diff --git a/archetypes/default.md b/archetypes/default.md
index 00e77bd..4be89c5 100644
--- a/archetypes/default.md
+++ b/archetypes/default.md
@@ -1,6 +1,17 @@
----
-title: "{{ replace .Name "-" " " | title }}"
-date: {{ .Date }}
-draft: true
----
++++
+title = "{{ replace .Name `-` ` ` | title }}"
+date = {{ .Date }}
+lastmod = {{ .Date }}
+tags = []
+categories = []
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
+draft = true
++++
diff --git a/config.toml b/config.toml
index 54937ad..e29fd6c 100644
--- a/config.toml
+++ b/config.toml
@@ -60,7 +60,7 @@ darkTheme = "dracula"
[params.profile]
enable = true
- avatar = "zerai.jpg"
+ avatar = "https://avatars.githubusercontent.com/u/2678365"
name = ""
bio = "" # support markdown syntax
# twitter = "GoHugoIO" # https://twitter.com/XXX
diff --git a/content/homepage/about.md b/content/homepage/about.md
deleted file mode 100644
index b5d6981..0000000
--- a/content/homepage/about.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: 'Our Difference'
-button: 'About us'
-weight: 2
----
-
-Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Ipsum dolor sit amet, et essent mediocritatem quo.
diff --git a/content/homepage/index.md b/content/homepage/index.md
deleted file mode 100644
index ca03031..0000000
--- a/content/homepage/index.md
+++ /dev/null
@@ -1,3 +0,0 @@
----
-headless: true
----
diff --git a/content/homepage/work.md b/content/homepage/work.md
deleted file mode 100644
index f99bc99..0000000
--- a/content/homepage/work.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: 'We Help Business Grow'
-button: 'Our Work'
-weight: 1
----
-
-Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit.
diff --git a/content/post/AMD-GPU-Screen-Tearing.md b/content/post/AMD-GPU-Screen-Tearing.md
new file mode 100644
index 0000000..2448ee7
--- /dev/null
+++ b/content/post/AMD-GPU-Screen-Tearing.md
@@ -0,0 +1,78 @@
++++
+title = "AMD GPU Screen Tearing"
+date = 2022-08-21T22:09:40-04:00
+lastmod = 2022-08-21T22:09:40-04:00
+tags = ["AMD","GPU","Fix"]
+categories = ["Linux"]
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
++++
+
+According to Wikipedia :
+> Screen tearing is a visual artifact in video display where a display device shows information from multiple frames in a single screen draw.
+If you are on Debian or Ubuntu, and you have an AMD GPU this might fix the problem 😊
+
+
+#### 1. Check if the is any config
+ ls -l /etc/X11/xorg.*
+
+{{< highlight bash-session >}}
+$ ls -l /etc/X11/xorg.*
+total 4
+-rw-r--r-- 1 root root 108 Jul 30 11:33 20-amdgpu.conf
+{{< /highlight >}}
+
+##### Backup if found
+ mkdir ~/xorg-backup
+ sudo mv -v /etc/X11/xorg.conf ~/xorg-backup/
+ sudo mv -v /etc/X11/xorg.conf.d ~/xorg-backup/
+
+#### 2. Check if the is any config
+
+ lspci -nnk | grep -i -EA3 "3d|display|vga"
+
+{{< highlight bash-session >}}
+$ lspci -nnk | grep -i -EA3 "3d|display|vga"
+09:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne [1002:1638] (rev c9)
+ Subsystem: Gigabyte Technology Co., Ltd Cezanne [1458:d000]
+ Kernel driver in use: amdgpu
+ Kernel modules: amdgpu
+{{< /highlight >}}
+
+##### If you have amdgpu then
+
+###### create the config file
+
+ sudo mkdir /etc/X11/xorg.conf.d
+ sudo vi /etc/X11/xorg.conf.d/20-amdgpu.conf
+
+###### Add the following to the config file 20-amdgpu.conf
+
+ Section "Device"
+ Identifier "AMD"
+ Driver "amdgpu"
+ Option "TearFree" "true"
+ EndSection
+
+##### If you have Radeon then
+
+###### create the config file
+
+ sudo vi /etc/X11/xorg.conf
+
+###### And add the following
+
+ Section "Device"
+ Identifier "Radeon"
+ Driver "radeon"
+ Option "TearFree" "on"
+ EndSection
+
+#### 3. Reboot 💣
+You can test now with [Screen tearing test](https://www.testufo.com/stutter)
\ No newline at end of file
diff --git a/content/post/emoji-support.md b/content/post/emoji-support.md
index dc3589a..5e38b34 100644
--- a/content/post/emoji-support.md
+++ b/content/post/emoji-support.md
@@ -6,6 +6,7 @@ description = "Guide to emoji usage in Hugo"
tags = [
"emoji",
]
+draft = true
+++
Emoji can be enabled in a Hugo project in a number of ways.
diff --git a/content/post/markdown-syntax.md b/content/post/markdown-syntax.md
index 2aa35e1..7cc90fa 100644
--- a/content/post/markdown-syntax.md
+++ b/content/post/markdown-syntax.md
@@ -15,6 +15,7 @@ categories = [
]
series = ["Themes Guide"]
aliases = ["migrate-from-jekyl"]
+draft = true
+++
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
diff --git a/content/post/math-typesetting.md b/content/post/math-typesetting.md
index fb1206a..32f763a 100644
--- a/content/post/math-typesetting.md
+++ b/content/post/math-typesetting.md
@@ -10,6 +10,7 @@ tags : [
"html",
"themes",
]
+draft : true
---
Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
diff --git a/content/post/placeholder-text.md b/content/post/placeholder-text.md
index 9ed5f69..ed306e5 100644
--- a/content/post/placeholder-text.md
+++ b/content/post/placeholder-text.md
@@ -7,6 +7,7 @@ tags = [
"markdown",
"text",
]
+draft = true
+++
Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
diff --git a/content/post/rich-content.md b/content/post/rich-content.md
index a38b7ff..260bd2d 100644
--- a/content/post/rich-content.md
+++ b/content/post/rich-content.md
@@ -7,6 +7,7 @@ tags = [
"shortcodes",
"privacy",
]
+draft = true
+++
Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
diff --git a/themes/notepadium/assets/css/style.css b/themes/notepadium/assets/css/style.css
index 85dda1e..8ceab21 100644
--- a/themes/notepadium/assets/css/style.css
+++ b/themes/notepadium/assets/css/style.css
@@ -515,7 +515,7 @@ b {
display: block;
max-width: 130px;
margin: auto;
- border-radius: 3px;
+ border-radius: 65px;
}
.article.author .name {