diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-11-25 16:38:20 -0500 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-11-25 16:38:20 -0500 |
commit | ea24059bb0de208607f1d584cc09707650c5d90d (patch) | |
tree | 28cc94f33c5b6becbb80b73ceb307239abf4b8d8 /alabaster-lite/sidebars | |
parent | 8b7affb9896d8d68fc37bc81ace19cb05d0f2eba (diff) |
sidebar shows up on mobile
Diffstat (limited to 'alabaster-lite/sidebars')
-rw-r--r-- | alabaster-lite/sidebars/about.html | 2 | ||||
-rw-r--r-- | alabaster-lite/sidebars/links.html | 26 | ||||
-rw-r--r-- | alabaster-lite/sidebars/title.html | 1 |
3 files changed, 27 insertions, 2 deletions
diff --git a/alabaster-lite/sidebars/about.html b/alabaster-lite/sidebars/about.html index ed6cb0e..0e83dc2 100644 --- a/alabaster-lite/sidebars/about.html +++ b/alabaster-lite/sidebars/about.html @@ -1,5 +1,3 @@ -<p class="blurb">This is technically a blog.</p> - <ul> <li><a href="/about">About Me</a></li> <li><a href="/feed/atom.xml">Atom Feed</a></li> diff --git a/alabaster-lite/sidebars/links.html b/alabaster-lite/sidebars/links.html new file mode 100644 index 0000000..44ce46e --- /dev/null +++ b/alabaster-lite/sidebars/links.html @@ -0,0 +1,26 @@ +<ul> + <li><a href="/about">About Me</a></li> + <li><a href="/feed/atom.xml">Atom Feed</a></li> + <li><a href="/links">Links</a></li> +</ul> + +<div class="webring-block-container"> + <a href="https://fediring.net/previous?host=fkfd.me"> + <div class="webring-block"> + <span class="webring-icon" id="icon-fediring-prev"></span> + <span class="webring-text">Prev</span> + </div> + </a> + <a href="https://fediring.net/"> + <div class="webring-block"> + <span class="webring-icon" id="icon-fediring"></span> + <span class="webring-text">Fediring</span> + </div> + </a> + <a href="https://fediring.net/next?host=fkfd.me"> + <div class="webring-block"> + <span class="webring-icon" id="icon-fediring-next"></span> + <span class="webring-text">Next</span> + </div> + </a> +</div> diff --git a/alabaster-lite/sidebars/title.html b/alabaster-lite/sidebars/title.html index becb5b3..2bfd103 100644 --- a/alabaster-lite/sidebars/title.html +++ b/alabaster-lite/sidebars/title.html @@ -10,3 +10,4 @@ {% else %} <h1 class="logo"><a href="{{nav.homepage.url|url}}">{{ config.site_name }}</a></h1> {% endif %} +<p class="blurb">This is technically a blog.</p> |