diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index fd105bd..0ae89bb 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -32,9 +32,12 @@
Read more
{{ range first 10 .Site.Pages }}
- -
- {{ .Title }}
-
+ {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
+ {{ if ne $url "about/" }}
+ -
+ {{ .Title }}
+
+ {{ end }}
{{ end }}
diff --git a/layouts/partials/post-list.html b/layouts/partials/post-list.html
index 138184f..98dceff 100644
--- a/layouts/partials/post-list.html
+++ b/layouts/partials/post-list.html
@@ -1,8 +1,11 @@
{{ range .Paginator.Pages }}
- -
-
- {{ .Title }}
{{ .Description }}
-
+ {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
+ {{ if ne $url "about/" }}
+ -
+
+ {{ .Title }}
{{ .Description }}
+
+ {{ end }}
{{ end }}
\ No newline at end of file