fix: seo for post
This commit is contained in:
parent
ab60b4baf7
commit
71ea19d6cb
2 changed files with 13 additions and 6 deletions
|
|
@ -13,13 +13,8 @@
|
||||||
export let description;
|
export let description;
|
||||||
// svelte-ignore unused-export-let
|
// svelte-ignore unused-export-let
|
||||||
export let date;
|
export let date;
|
||||||
|
// svelte-ignore unused-export-let
|
||||||
export let keywords;
|
export let keywords;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
|
||||||
<title>{title}</title>
|
|
||||||
<meta name="description" content={description} />
|
|
||||||
<meta name="keywords" content={keywords.join(', ')} />
|
|
||||||
</svelte:head>
|
|
||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,18 @@ keywords:
|
||||||
- microG
|
- microG
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<script context="module" lang="ts">
|
||||||
|
export async function load() {
|
||||||
|
return {
|
||||||
|
stuff: {
|
||||||
|
title,
|
||||||
|
description,
|
||||||
|
keywords,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
# How to: Redmi Note 7 with ArrowOs (Android 12), root, microG
|
# How to: Redmi Note 7 with ArrowOs (Android 12), root, microG
|
||||||
|
|
||||||
This tutorial will show you how to flash ArrowOS, a nice android 12 rom, together with magisk to get root access to the phone and also microG, the google alternative to google play services. This tutorial is tailored for the Redmi Note 7, commonly referred to as lavender. Other phones might work differently due to not having a ramdisk, or being an A/B device, or ... something else. Proceed with caution. You can't blame me for bricked devices.
|
This tutorial will show you how to flash ArrowOS, a nice android 12 rom, together with magisk to get root access to the phone and also microG, the google alternative to google play services. This tutorial is tailored for the Redmi Note 7, commonly referred to as lavender. Other phones might work differently due to not having a ramdisk, or being an A/B device, or ... something else. Proceed with caution. You can't blame me for bricked devices.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue