File tree 4 files changed +68
-0
lines changed
4 files changed +68
-0
lines changed Original file line number Diff line number Diff line change
1
+ < nav >
2
+ < ul >
3
+ < li > < a href ="{{ "/" | relative_url }}"> Home</ a > </ li >
4
+ < li > < a href ="{{ "/blog" | relative_url }}"> Blog</ a > </ li >
5
+ < li > < a href ="{{ "/about" | relative_url }}"> About</ a > </ li >
6
+ </ ul >
7
+ </ nav >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > {{ page.title }} - {{ site.title }}</ title >
7
+ < link rel ="stylesheet " href ="{{ "/assets/css/style.css" | relative_url }}">
8
+ </ head >
9
+ < body >
10
+ < header >
11
+ {% include navbar.html %}
12
+ </ header >
13
+ < main >
14
+ {{ content }}
15
+ </ main >
16
+ < footer >
17
+ < p > © {{ site.time | date: "%Y" }} {{ site.title }}. All rights reserved.</ p >
18
+ </ footer >
19
+ </ body >
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > {{ page.title }} - {{ site.title }}</ title >
7
+ < link rel ="stylesheet " href ="{{ "/assets/main.css" | relative_url }}">
8
+ </ head >
9
+ < body >
10
+ < header >
11
+ {% include navbar.html %}
12
+ </ header >
13
+ < main >
14
+ {{ content }}
15
+ </ main >
16
+ < footer >
17
+ < p > © {{ site.time | date: "%Y" }} {{ site.title }}. All rights reserved.</ p >
18
+ </ footer >
19
+ </ body >
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > {{ page.title }} - {{ site.title }}</ title >
7
+ < link rel ="stylesheet " href ="{{ "/assets/main.css" | relative_url }}">
8
+ </ head >
9
+ < body >
10
+ < header >
11
+ {% include navbar.html %}
12
+ </ header >
13
+ < article >
14
+ < h1 > {{ page.title }}</ h1 >
15
+ {{ content }}
16
+ </ article >
17
+ < footer >
18
+ < p > © {{ site.time | date: "%Y" }} {{ site.title }}. All rights reserved.</ p >
19
+ </ footer >
20
+ </ body >
21
+ </ html >
You can’t perform that action at this time.
0 commit comments