Skip to content

Commit a87e896

Browse files
committed
Initial blog setup
1 parent 9fc2b88 commit a87e896

22 files changed

+683
-0
lines changed

checks.json

+1
Large diffs are not rendered by default.

config.toml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
title = "FrogBlog"
2+
description = "The Froggening"
3+
base_url = "https://blog.graphics-programming.org"
4+
5+
compile_sass = true
6+
build_search_index = true
7+
8+
[markdown]
9+
highlight_code = true
10+
11+
[search]
12+
include_title = true
13+
include_description = true
14+
include_date = true
15+
include_path = false
16+
include_content = true
17+
truncate_content_length = 256
18+
index_format = "elasticlunr_javascript"
19+
20+
taxonomies = [
21+
{name = "tags"},
22+
{name = "categories"},
23+
{name = "authors"},
24+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
+++
2+
title = "VSM - A tragedy in 5 acts"
3+
description = "Virtual Shadow Mapping made ez"
4+
date = "2024-10-01"
5+
6+
#[taxonomies]
7+
author = ["lvstri"]
8+
tags = ["rust", "web"]
9+
categories = ["article"]
10+
+++
11+
12+
first article
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "How frogs improved this renderer (Click to learn more)"
3+
author = ["deccer"]
4+
date = "2024-10-01"
5+
category = "article"
6+
tags = []
7+
+++
8+
9+
first article

content/articles/_index.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Technical Articles"
3+
sort_by = "date"
4+
weight = 1
5+
paginate_by = 20
6+
+++
7+
8+
Technical Articles

content/authors/_index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "Authors"
3+
sort_by = "slug"
4+
paginate_by = 1
5+
weight = 99
6+
#template = "authors.html"
7+
+++
8+
9+
Meet the authors behind the content on this site!

content/authors/jaker.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "jaker"
3+
description = "jaker'sss corner"
4+
tags = []
5+
+++
6+
7+
Hi Frog, its me, Jaker.
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "EngineKit - Modern OpenGL Abstraction written in C#"
3+
description = "description - enginekit"
4+
author = ["deccer"]
5+
date = "2024-10-07"
6+
category = "project"
7+
tags = ["csharp", "opengl", "modern-opengl"]
8+
+++
9+
10+
[See here](https://github.com/deccer/EngineKit)

content/projects/_index.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Community Projects"
3+
sort_by = "date"
4+
weight = 2
5+
paginate_by = 20
6+
+++
7+
8+
Community Projects

content/showcase/_index.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Server show case"
3+
sort_by = "date"
4+
weight = 3
5+
paginate_by = 20
6+
+++
7+
8+
Show off the beautiful things you made and make

content/tags/_index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "Tags"
3+
sort_by = "title"
4+
paginate_by = 1
5+
weight = 0
6+
template = "tags.html"
7+
+++
8+
9+
Explore the various topics covered on this site.

public/elasticlunr.min.js

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/search_index.en.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/style.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)