makes the sidebar controlled by var

This commit is contained in:
etherware-novice 2024-07-26 14:38:36 -05:00
parent 871fda3f1d
commit 1c86d918a2
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
5 changed files with 20 additions and 2 deletions

12
_includes/comicnav.html Normal file
View File

@ -0,0 +1,12 @@
<a href="/">back</a><br><br>
{% for post in site.comic %}
{% if post.title == "comic index" %}
{% continue %}
{% endif %}
{% if post.header %}
<h4>{{ post.header }}</h4>
{% endif %}
<a href="{{ post.url }}">{{ post.title | downcase }}</a><br>
{% endfor %}

View File

@ -1,5 +1,6 @@
--- ---
layout: default layout: default
navbar: "comicnav"
--- ---
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
<h3>{{ page.name }}</h3> <h3>{{ page.name }}</h3>

View File

@ -1,3 +1,6 @@
---
navbar: topnav
---
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
@ -13,7 +16,9 @@
<div class="columns"> <div class="columns">
<div class="left-sidebar"> <div class="left-sidebar">
{% include navigation.html %} {% if layout.navbar != "" %}
{% include {{layout.navbar}}.html %}
{% endif %}
</div> </div>
<div class="main-content">{{ content }}</div> <div class="main-content">{{ content }}</div>
<div class="right-sidebar"> <div class="right-sidebar">

View File

@ -10,7 +10,7 @@
.left-sidebar { .left-sidebar {
background: darkgray; background: darkgray;
padding: 10px; padding: 10px;
overflow-y: scroll; overflow: scroll;
width: max-content; width: max-content;
position: sticky; position: sticky;
} }