diff options
author | xengineering <me@xengineering.eu> | 2022-05-31 12:21:55 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-31 12:21:55 +0200 |
commit | 441265af7cf92e925d002c0d6d5372ec4450a58e (patch) | |
tree | 27db3e6dc6de7ed5ad115150766c3cd74f8471ce | |
parent | d2cce2c11cbabebab82243b850bcd7dc0a68cab2 (diff) | |
download | website-441265af7cf92e925d002c0d6d5372ec4450a58e.tar website-441265af7cf92e925d002c0d6d5372ec4450a58e.tar.zst website-441265af7cf92e925d002c0d6d5372ec4450a58e.zip |
Introduce content/git folder
-rw-r--r-- | content/git/webiot.md (renamed from content/webiot.md) | 0 | ||||
-rw-r--r-- | themes/bare/layouts/_default/single.html | 2 | ||||
-rw-r--r-- | themes/bare/layouts/index.html | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/content/webiot.md b/content/git/webiot.md index 71fbef1..71fbef1 100644 --- a/content/webiot.md +++ b/content/git/webiot.md diff --git a/themes/bare/layouts/_default/single.html b/themes/bare/layouts/_default/single.html index d62873e..319d849 100644 --- a/themes/bare/layouts/_default/single.html +++ b/themes/bare/layouts/_default/single.html @@ -12,7 +12,7 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="../libweb.css" type="text/css"> + <link rel="stylesheet" href="{{ "libweb.css" | absURL }}" type="text/css"> </head> diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html index bddd4d9..58f4d7c 100644 --- a/themes/bare/layouts/index.html +++ b/themes/bare/layouts/index.html @@ -12,7 +12,7 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="./libweb.css" type="text/css"> + <link rel="stylesheet" href="{{ "libweb.css" | absURL }}" type="text/css"> </head> @@ -32,7 +32,7 @@ {{.Content}} <ul> - {{ $page := .GetPage "webiot.md" }} + {{ $page := .GetPage "git/webiot.md" }} <li><a href="{{ $page.Permalink }}">{{ $page.Params.heading }}</a> - {{$page.Description}}</li> </ul> |