diff --git a/.kdev4/Omegamma.kdev4 b/.kdev4/Omegamma.kdev4 new file mode 100644 index 0000000..2ffd5cd --- /dev/null +++ b/.kdev4/Omegamma.kdev4 @@ -0,0 +1,2 @@ +[Project] +VersionControlSupport=kdevgit diff --git a/layouts/index.html b/layouts/index.html index a008935..de9d464 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,4 +1,4 @@ {{ define "main" }} +

Test

- {{ end }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html index d410235..38da6fa 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -3,6 +3,7 @@ + {{ hugo.Generator }} diff --git a/layouts/partials/section1.html b/layouts/partials/section1.html new file mode 100644 index 0000000..9079dc1 --- /dev/null +++ b/layouts/partials/section1.html @@ -0,0 +1,5 @@ + +
+{{ .Content | safeHTML }} +
+
diff --git a/static/css/common.css b/static/css/common.css index 7d1d532..b9d3bd8 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -5,10 +5,13 @@ body { --light-font: 'Metropolis Light', 'Fira Sans Light','Ubuntu Light', 'Noto Sans Light', sans-serif; --primary-color: #50DC71; --nav-background: #FAFAFA; - --footer-background: #111111; + --footer-background: #111111; } - +a[role=button] { + text-decoration: none; + color: black; +} .center { margin-right: auto; diff --git a/static/css/header.css b/static/css/header.css index 8c818a0..bc98aeb 100644 --- a/static/css/header.css +++ b/static/css/header.css @@ -40,11 +40,6 @@ nav .navbar-list { text-transform: uppercase; } -a[role=button] { - text-decoration: none; - color: black; -} - .navbar-list li { padding: 1em; margin-left: 0; @@ -84,6 +79,7 @@ a[role=button] { .nav-mobile { display: flex; + width: 100%; } .navbar-brand { diff --git a/static/css/sections.css b/static/css/sections.css new file mode 100644 index 0000000..8a83421 --- /dev/null +++ b/static/css/sections.css @@ -0,0 +1,10 @@ +.section-end-triangle { + width: 0; + height: 0; + border-top-width: 3em; + border-top-style: solid; + border-top-color: transparent; + border-right-width: 100vw; + border-right-style: solid; + border-right-color: #FFFFFF; +}