diff options
| -rw-r--r-- | _data/navigation.yml | 8 | ||||
| -rw-r--r-- | _layouts/default.html | 2 | ||||
| -rw-r--r-- | about.md | 1 | ||||
| -rw-r--r-- | art.md | 1 | ||||
| -rw-r--r-- | music.md | 1 | ||||
| -rw-r--r-- | other.md | 1 |
6 files changed, 9 insertions, 5 deletions
diff --git a/_data/navigation.yml b/_data/navigation.yml index 33574ab..a774e85 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -1,10 +1,10 @@ - name: home link: / - name: music - link: /music.html + link: /music - name: art - link: /art.html + link: /art - name: other - link: /other.html + link: /other - name: about - link: /about.html + link: /about diff --git a/_layouts/default.html b/_layouts/default.html index 2a76f76..e82a35e 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <title>{{ page.title }} - {{ site.title }}</title> - <link rel="stylesheet" href="assets/css/style.css"> + <link rel="stylesheet" href="/assets/css/style.css"> </head> <body> {% include navigation.html %} @@ -1,5 +1,6 @@ --- title: about +permalink: /about/ --- # about @@ -1,5 +1,6 @@ --- title: art +permalink: /art/ --- # art @@ -1,5 +1,6 @@ --- title: music +permalink: /music/ --- # music @@ -1,5 +1,6 @@ --- title: other +permalink: /other/ --- # other |
