Skip to content

Commit

Permalink
Initial blog setup
Browse files Browse the repository at this point in the history
  • Loading branch information
deccer committed Oct 15, 2024
1 parent 9fc2b88 commit a87e896
Show file tree
Hide file tree
Showing 22 changed files with 683 additions and 0 deletions.
1 change: 1 addition & 0 deletions checks.json

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
title = "FrogBlog"
description = "The Froggening"
base_url = "https://blog.graphics-programming.org"

compile_sass = true
build_search_index = true

[markdown]
highlight_code = true

[search]
include_title = true
include_description = true
include_date = true
include_path = false
include_content = true
truncate_content_length = 256
index_format = "elasticlunr_javascript"

taxonomies = [
{name = "tags"},
{name = "categories"},
{name = "authors"},
]
12 changes: 12 additions & 0 deletions content/articles/2024-10-01-first-article.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
+++
title = "VSM - A tragedy in 5 acts"
description = "Virtual Shadow Mapping made ez"
date = "2024-10-01"

#[taxonomies]
author = ["lvstri"]
tags = ["rust", "web"]
categories = ["article"]
+++

first article
9 changes: 9 additions & 0 deletions content/articles/2024-10-02-second-article.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = "How frogs improved this renderer (Click to learn more)"
author = ["deccer"]
date = "2024-10-01"
category = "article"
tags = []
+++

first article
8 changes: 8 additions & 0 deletions content/articles/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
title = "Technical Articles"
sort_by = "date"
weight = 1
paginate_by = 20
+++

Technical Articles
9 changes: 9 additions & 0 deletions content/authors/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = "Authors"
sort_by = "slug"
paginate_by = 1
weight = 99
#template = "authors.html"
+++

Meet the authors behind the content on this site!
7 changes: 7 additions & 0 deletions content/authors/jaker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = "jaker"
description = "jaker'sss corner"
tags = []
+++

Hi Frog, its me, Jaker.
10 changes: 10 additions & 0 deletions content/projects/2024-10-07-enginekit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "EngineKit - Modern OpenGL Abstraction written in C#"
description = "description - enginekit"
author = ["deccer"]
date = "2024-10-07"
category = "project"
tags = ["csharp", "opengl", "modern-opengl"]
+++

[See here](https://github.com/deccer/EngineKit)
8 changes: 8 additions & 0 deletions content/projects/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
title = "Community Projects"
sort_by = "date"
weight = 2
paginate_by = 20
+++

Community Projects
8 changes: 8 additions & 0 deletions content/showcase/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
title = "Server show case"
sort_by = "date"
weight = 3
paginate_by = 20
+++

Show off the beautiful things you made and make
9 changes: 9 additions & 0 deletions content/tags/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = "Tags"
sort_by = "title"
paginate_by = 1
weight = 0
template = "tags.html"
+++

Explore the various topics covered on this site.
10 changes: 10 additions & 0 deletions public/elasticlunr.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/search_index.en.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a87e896

Please sign in to comment.