From eceb2f66bbcd46c6cbf0dd81ef705bb9462ba89c Mon Sep 17 00:00:00 2001 From: Phil Morrell Date: Sat, 5 Feb 2022 19:08:10 +0000 Subject: [PATCH] add SPDX-License-Identifier to zola files * confirmed intent with authors sm2n and spongycake * style.css imported from design-system, responsive-nav itself is MIT * html comment should come after doctype declaration --- config.toml | 1 + content/_index.md | 2 ++ static/style.css | 1 + templates/base.html | 1 + templates/index.html | 1 + templates/page.html | 1 + 6 files changed, 7 insertions(+) diff --git a/config.toml b/config.toml index 8aa9399..5ef59c0 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: CC0-1.0 # The URL the site will be built for base_url = "https://libregaming.org" diff --git a/content/_index.md b/content/_index.md index ee886d2..41e0104 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,3 +1,5 @@ +++ +++ + + # Hi there diff --git a/static/style.css b/static/style.css index 487be12..e416030 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ /*!**************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/responsive-nav/responsive-nav.css ***! \**************************************************************************************************/ diff --git a/templates/base.html b/templates/base.html index 7b5106a..2ea271c 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,5 @@ + diff --git a/templates/index.html b/templates/index.html index 575141f..001b5d1 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,4 +1,5 @@ {% extends "base.html" %} + {% block content %} {{ section.content | safe }} diff --git a/templates/page.html b/templates/page.html index 8226656..a6f3670 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,5 @@ {% extends "base.html" %} + {% block content %} {{ page.content | safe }}