diff options
author | martin@ashbysoft.com <martin@ashbysoft.com> | 2021-11-09 21:56:13 +0000 |
---|---|---|
committer | martin@ashbysoft.com <martin@ashbysoft.com> | 2021-11-09 21:56:13 +0000 |
commit | 5c677a0c5495a4194462facbd1fc740d86830e52 (patch) | |
tree | 998fc4111ecd0bc421ed650f97924427677d3d22 | |
parent | 5934289589ba9803930a07f4159790f78bb6f29e (diff) | |
download | mfashby.net-5c677a0c5495a4194462facbd1fc740d86830e52.tar.gz mfashby.net-5c677a0c5495a4194462facbd1fc740d86830e52.tar.bz2 mfashby.net-5c677a0c5495a4194462facbd1fc740d86830e52.tar.xz mfashby.net-5c677a0c5495a4194462facbd1fc740d86830e52.zip |
Add RSS link. Don't center footer content. Add title to content list
-rw-r--r-- | content/_index.md | 5 | ||||
-rw-r--r-- | themes/XMin/layouts/partials/foot_custom.html | 13 | ||||
-rw-r--r-- | themes/XMin/static/css/style.css | 2 |
3 files changed, 19 insertions, 1 deletions
diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..d44a9d4 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,5 @@ +--- +title: Home +--- + +# mfashby.net diff --git a/themes/XMin/layouts/partials/foot_custom.html b/themes/XMin/layouts/partials/foot_custom.html index e69de29..73b86a3 100644 --- a/themes/XMin/layouts/partials/foot_custom.html +++ b/themes/XMin/layouts/partials/foot_custom.html @@ -0,0 +1,13 @@ +<a href="https://mfashby.net/index.xml"> +<svg xmlns="http://www.w3.org/2000/svg" + role="img" aria-label="[title]" + width="24" height="24" + viewBox="0 0 24 24" + fill="none" + stroke="orange" + stroke-width="2" + stroke-linecap="round" + stroke-linejoin="round"> + <title>RSS</title> + <path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg> +</a> diff --git a/themes/XMin/static/css/style.css b/themes/XMin/static/css/style.css index 4dc3ae4..48b563e 100644 --- a/themes/XMin/static/css/style.css +++ b/themes/XMin/static/css/style.css @@ -14,7 +14,7 @@ body { padding: 5px; border-radius: 5px; } -.menu, .article-meta, footer { text-align: center; } +.menu, .article-meta { text-align: center; } .title { font-size: 1.1em; } footer a { text-decoration: none; } hr { |