makes the sidebar controlled by var
This commit is contained in:
parent
871fda3f1d
commit
1c86d918a2
12
_includes/comicnav.html
Normal file
12
_includes/comicnav.html
Normal 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 %}
|
@ -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>
|
||||||
|
@ -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">
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user