cleans up sidebar and makes it point to real links

This commit is contained in:
etherware-novice 2024-07-25 22:16:37 -05:00
parent 1ecb9d052c
commit 8aba83a3a1
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
3 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,8 @@
- name: Home
- name: home
link: /
- name: About
link: /about.html
- name: Blog
link: /blog.html
- name: comics
link: /comic
- name: link dump
link: /helpdump
- name: free guestbook!
link: http://users3.smartgb.com/g/g.php?a=s&i=g36-36498-b6

View File

@ -1,6 +1,6 @@
<nav>
{% for item in site.data.navigation %}
<a href="{{ item.link }}" {% if page.url == item.link %}class=current{% endif %}>
{{ item.name }} </a>
{{ item.name }} </a><br>
{% endfor %}
</nav>

View File

@ -11,7 +11,7 @@
background: darkgray;
padding: 10px;
overflow-y: scroll;
flex: 0 60px;
width: max-content;
position: sticky;
}