Skip to content

Commit

Permalink
Merge pull request #11 from IPlayZed/dev
Browse files Browse the repository at this point in the history
WIP, theme works, blogs only show through tags?
  • Loading branch information
IPlayZed authored Jan 8, 2024
2 parents 6753016 + a0fa104 commit b940e07
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/dose"]
path = themes/dose
url = https://github.com/oltdaniel/dose.git
15 changes: 13 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,24 @@ compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true

#theme="anemone" # TODO: Make this theme work when building GH pages.
theme = "dose"

taxonomies = [
{ name = "tags", paginate_by = 5, feed = true },
]

[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
highlight_theme = "visual-studio-dark"

[extra]
# Put all your custom variables here
# twitter_card = false # Used for anemone
social_media = [
{ name = "GitHub", url = "https://github.com/IPlayZed" },
{ name = "LinkedIn", url = "https://www.linkedin.com/in/balazs-borcsok-ptr/" },
{ name = "StackOverflow", url = "https://stackoverflow.com/users/10653163/bal%c3%a1zs-b%c3%b6rcs%c3%b6k", rel = "me" },
{ name = "Cloud", url = "https://amazingmonkey.ddns.net" }
]
default_theme = "light"
3 changes: 3 additions & 0 deletions content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
sort_by = "date"
+++
10 changes: 10 additions & 0 deletions content/blog/hello-blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Starting my blog"
date = 2024-01-08
updated = 2024-01-08
description = "the first blogpost"
[taxonomies]
tags = ["hello-world", "zola"]
+++

My main problem with learning about computers is that I never got to *really* tell anyone about it
2 changes: 2 additions & 0 deletions templates/parts/me.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<img src="https://via.placeholder.com/50" height="50px" width="50px">
<p>Hi, this is me. I write about tech, programming and engineering.</p>
1 change: 1 addition & 0 deletions themes/dose
Submodule dose added at cd84a1

0 comments on commit b940e07

Please sign in to comment.