diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..269489c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/juice"] + path = themes/juice + url = https://github.com/huhu/juice diff --git a/config.toml b/config.toml index f1b0384..4301e1b 100644 --- a/config.toml +++ b/config.toml @@ -7,10 +7,23 @@ compile_sass = true # Whether to build a search index to be used later on by a JavaScript library build_search_index = true +theme = "juice" + +taxonomies = [ + { name = "tags", paginate_by = 10 }, +] + [markdown] # Whether to do syntax highlighting # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true [extra] -# Put all your custom variables here +juice_logo_name = "penguincoder" +juice_logo_path = "tux.png" +juice_exclude_menu = [] +juice_extra_menu = [ + { title = "Blog", link = "/blog" }, + { title = "Resume", link = "/resume" }, +] +repository_url = "https://git.penguincoder.org/penguincoder/penguincoder-org" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..6905d87 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,25 @@ ++++ +title = "penguincoder" +description = "About me" ++++ + +# Social Media + +[{{ icon(name="git-alt") }}](https://git.penguincoder.org/penguincoder) +[{{ icon(name="github") }}](https://github.com/penguincoder) +[{{ icon(name="stack-overflow") }}](https://stackoverflow.com/users/812879/penguincoder) +[{{ icon(name="keybase") }}](https://keybase.io/penguincoder) +[{{ icon(name="reddit") }}](https://reddit.com/u/therealpenguincoder) +[{{ icon(name="twitter") }}](https://twitter.com/penguincoder) +[{{ icon(name="mastodon") }}](https://hachyderm.io/@penguincoder) +[{{ icon(name="linkedin") }}](https://www.linkedin.com/in/andrew-coleman-1238834/) +[{{ icon(name="instagram") }}](https://www.instagram.com/penguincoder) + +# Github Activity + +![Github Activity](https://github-readme-stats.vercel.app/api?username=penguincoder&count_private=true&theme=transparent&show_icons=true) + +# [Resume](/resume) + +# [Blog](/blog) + diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..05da39a --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Andrew's Blog" +description = "A chronological series" +sort_by = "date" +paginate_by = 5 ++++ diff --git a/content/blog/first-post.md b/content/blog/first-post.md new file mode 100644 index 0000000..9e067cc --- /dev/null +++ b/content/blog/first-post.md @@ -0,0 +1,14 @@ ++++ +title = "First Post" +description = "Welcome to the new blog" +date = "2023-01-10" + +[taxonomies] +tags = ["rust", "blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-1.md b/content/blog/post-1.md new file mode 100644 index 0000000..f91a04b --- /dev/null +++ b/content/blog/post-1.md @@ -0,0 +1,14 @@ ++++ +title = "Second Post" +description = "second post" +date = "2023-01-09" + +[taxonomies] +tags = ["rust", "blog", "one"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-10.md b/content/blog/post-10.md new file mode 100644 index 0000000..781d783 --- /dev/null +++ b/content/blog/post-10.md @@ -0,0 +1,14 @@ ++++ +title = "Eleventh Post" +description = "post 11" +date = "2022-12-31" + +[taxonomies] +tags = ["christmas", "blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-2.md b/content/blog/post-2.md new file mode 100644 index 0000000..0aa5085 --- /dev/null +++ b/content/blog/post-2.md @@ -0,0 +1,14 @@ ++++ +title = "third Post" +description = "third post" +date = "2023-01-08" + +[taxonomies] +tags = ["rust", "five", "blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-3.md b/content/blog/post-3.md new file mode 100644 index 0000000..697f2d7 --- /dev/null +++ b/content/blog/post-3.md @@ -0,0 +1,14 @@ ++++ +title = "Post 4" +description = "fourth post" +date = "2023-01-07" + +[taxonomies] +tags = ["andrew"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-4.md b/content/blog/post-4.md new file mode 100644 index 0000000..9111e43 --- /dev/null +++ b/content/blog/post-4.md @@ -0,0 +1,14 @@ ++++ +title = "Fifth Post" +description = "post 5" +date = "2023-01-06" + +[taxonomies] +tags = ["blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-5.md b/content/blog/post-5.md new file mode 100644 index 0000000..3cd3994 --- /dev/null +++ b/content/blog/post-5.md @@ -0,0 +1,14 @@ ++++ +title = "Sixth Post" +description = "sixth post" +date = "2023-01-05" + +[taxonomies] +tags = [] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-6.md b/content/blog/post-6.md new file mode 100644 index 0000000..525668f --- /dev/null +++ b/content/blog/post-6.md @@ -0,0 +1,14 @@ ++++ +title = "Seventh Post" +description = "seventh post" +date = "2023-01-04" + +[taxonomies] +tags = ["python"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-7.md b/content/blog/post-7.md new file mode 100644 index 0000000..4c0d43c --- /dev/null +++ b/content/blog/post-7.md @@ -0,0 +1,14 @@ ++++ +title = "Eighth Post" +description = "eighth post" +date = "2023-01-03" + +[taxonomies] +tags = ["blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-8.md b/content/blog/post-8.md new file mode 100644 index 0000000..264efb5 --- /dev/null +++ b/content/blog/post-8.md @@ -0,0 +1,14 @@ ++++ +title = "Ninth Post" +description = "post 9" +date = "2023-01-02" + +[taxonomies] +tags = ["calculators"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/blog/post-9.md b/content/blog/post-9.md new file mode 100644 index 0000000..9406b65 --- /dev/null +++ b/content/blog/post-9.md @@ -0,0 +1,14 @@ ++++ +title = "Tenth Post" +description = "11 post" +date = "2023-01-01" + +[taxonomies] +tags = ["two", "blog"] ++++ + +This is a first post. + + + +This is the rest of the story. \ No newline at end of file diff --git a/content/resume/_index.md b/content/resume/_index.md new file mode 100644 index 0000000..f301e94 --- /dev/null +++ b/content/resume/_index.md @@ -0,0 +1,12 @@ ++++ +title = "Resume" +description = "A history of professional, educational, and personal interests" ++++ + +# Technical Skills + +# Work History + +# Education + +# Personal diff --git a/sass/pc.scss b/sass/pc.scss new file mode 100644 index 0000000..66c31bb --- /dev/null +++ b/sass/pc.scss @@ -0,0 +1,7 @@ +.content a span.icon, .content a i { + color: var(--primary-text-color); +} + +.content a:hover, .content a i:hover { + text-decoration: none; +} diff --git a/static/tux.png b/static/tux.png new file mode 100755 index 0000000..c0fa9ac Binary files /dev/null and b/static/tux.png differ diff --git a/templates/_variables.html b/templates/_variables.html new file mode 100644 index 0000000..2b3b7cd --- /dev/null +++ b/templates/_variables.html @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..f7d63f3 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,30 @@ +{% extends "juice/templates/index.html" %} + +{% block head %} + + +{% endblock head %} + +{% block hero %} +
+

+ Andrew Coleman +

+

+ An experienced software engineer and architect.
Sometimes posting about hobbies and farming, too. +

+
+ +
+ Explore More ⇩ +
+{% endblock hero %} + +{% block footer %} +