File tree Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Original file line number Diff line number Diff line change
1
+ < aside >
2
+ < div class ="logo "> </ div >
3
+ < div class ="nav-o-meter "> </ div >
4
+ < nav class ="main-menu ">
5
+ < ul >
6
+ <!--
7
+ loop all pages
8
+ exclude all entry layouts
9
+ include all default and the reference
10
+ exclude the root path
11
+ -->
12
+ {% for item in site.pages %}{% if item.layout != 'entry' %}{%if item.layout == 'default' or item.layout == 'reference' %}{% if item.url != '/' %}
13
+ < li class ="menu-item {% if item.title == page.title %}active{% endif %} "> < a href ="{{item.url}} "> {{item.title}}</ a > </ li >
14
+ {% endif %}{% endif %}{% endif %}{% endfor %}
15
+ </ ul >
16
+ </ nav >
17
+ < div class ="tweet ">
18
+ </ div >
19
+ < div class ="links "> </ div >
20
+ </ aside >
Original file line number Diff line number Diff line change
1
+ < footer >
2
+ < div class ="impressum ">
3
+
4
+ </ div >
5
+ </ footer >
Original file line number Diff line number Diff line change 17
17
< script type ="text/javascript " src ="/assets/js/highlight.js "> </ script >
18
18
< script src ="/assets/js/basiljs.js " type ="text/javascript "> </ script >
19
19
</ head >
20
- < body >
20
+ <!--
21
+ the filtering of the titles for a body class is a little cumbersome.
22
+ If we have some special characters in the tile we will have to filter it here
23
+ -->
24
+ < body class ="{{
25
+ page.title | replace: '.', '' | replace: ' ', '' | downcase
26
+ }} ">
27
+ {% include aside-left.html %}
21
28
< div class ="main ">
22
29
< h1 > {{page.title}}</ h1 >
23
30
< div id ="content " class ="wrapppper ">
@@ -27,8 +34,7 @@ <h1>{{page.title}}</h1>
27
34
< div class ="line "> </ div >
28
35
< div class ="line "> </ div >
29
36
</ div >
30
- < div class ="guidelines ">
31
- <!-- <script src="/assets/js/gridline.js" type="text/javascript"></script> -->
32
- </ div >
37
+ < div class ="guidelines "> </ div >
38
+ {% include footer.html %}
33
39
</ body >
34
40
</ html >
Original file line number Diff line number Diff line change @@ -3,18 +3,6 @@ layout: default
3
3
title : Basil.js
4
4
---
5
5
6
- <div >
7
- <ul >
8
- {% for page in site.pages %}
9
- {% if page.layout != 'entry' %}
10
- {%if page.layout == 'default' or page.layout == 'reference' %}
11
- <li ><a href =" {{page.url}} " >{{page.title}}</a ></li >
12
- {%endif%}
13
- {% endif %}
14
-
15
- {% endfor %}
16
- </ul >
17
- </div >
18
6
19
7
## Have you ever wanted to ...
20
8
You can’t perform that action at this time.
0 commit comments