From 21dd36d12a8185e9eda4f733689c9c814e8c5389 Mon Sep 17 00:00:00 2001 From: gws Date: Tue, 5 Nov 2024 12:59:35 +0100 Subject: [PATCH] started working on a producgt page with juice --- config.toml | 12 +++++ content/_index.md | 8 ++++ sass/style.scss | 29 +++++++++++ static/build-blocks.svg | 80 +++++++++++++++++++++++++++++++ templates/index.html | 103 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 232 insertions(+) create mode 100644 content/_index.md create mode 100644 sass/style.scss create mode 100644 static/build-blocks.svg create mode 100644 templates/index.html diff --git a/config.toml b/config.toml index ef5da01..2c493a9 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,6 @@ # The URL the site will be built for base_url = "https://glennwso.com" +theme = "juice" # Whether to automatically compile all Sass files in the sass directory compile_sass = true @@ -14,3 +15,14 @@ highlight_code = true [extra] # Put all your custom variables here +juice_logo_name = "Juice" +juice_logo_path = "juice.svg" +juice_extra_menu = [ + { title = "Github", link = "https://github.com/huhu/juice"} +] +repository_url = "https://github.com/huhu/juice" + +# meta_title = "The cool TeX automation tool" +# meta_description = "arara is a TeX automation tool based on directives and rules." +footer = "arara by the Island of TeX" + diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..c577504 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ ++++ + ++++ + + +# hello + +hello world diff --git a/sass/style.scss b/sass/style.scss new file mode 100644 index 0000000..0b4d796 --- /dev/null +++ b/sass/style.scss @@ -0,0 +1,29 @@ +div.nav-outlinks { + -webkit-box-orient: horizontal; + -moz-box-orient: horizontal; + -webkit-box-direction: normal; + -moz-box-direction: normal; + -webkit-flex-flow: wrap; + flex-flow: wrap; + -webkit-box-pack: center; + -moz-box-pack: center; + -webkit-justify-content: center; + justify-content: center; + gap: 1em; + /* display: -webkit-box; */ + /* display: -moz-box; */ + /* display: -webkit-flex; */ + display: flex; +} + +footer div.nav-outlinks a { + color: #fff; + text-decoration: none; +} + +.inline-icon-container svg { + vertical-align: middle; + fill: #fff; + width: 1rem; + height: 1rem; +} \ No newline at end of file diff --git a/static/build-blocks.svg b/static/build-blocks.svg new file mode 100644 index 0000000..83abd0e --- /dev/null +++ b/static/build-blocks.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..cd13596 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,103 @@ +{% extends "juice/templates/index.html" %} + +{% block head %} + + +{% endblock head %} + + + +{% block hero %} + + + + +
+

+ Let's Build Something! +

+

+ Hi my name is Glenn, trust me am a engineer... +

+
+ + + Repos +
+
+ + +
+ Explore More ⇩ +
+ + +{% endblock hero %} + + +{% block sidebar %} + + + +{% endblock sidebar %} + + +{% block footer %} + +{% endblock footer %} \ No newline at end of file