diff options
| -rw-r--r-- | html_templates/default.html | 1 | ||||
| -rw-r--r-- | www_assets/css/site.css | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/html_templates/default.html b/html_templates/default.html index 21abb9a..e7a133d 100644 --- a/html_templates/default.html +++ b/html_templates/default.html @@ -5,6 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ $title }}</title> <link rel="shortcut icon" href="/images/favicon.png"> + <link rel="stylesheet" href="/css/site.css"> </head> <body> <section>{{ $contents }}</section> diff --git a/www_assets/css/site.css b/www_assets/css/site.css new file mode 100644 index 0000000..394e3e7 --- /dev/null +++ b/www_assets/css/site.css @@ -0,0 +1,3 @@ +section a { + display: block; +} |
