Skip to content

Commit

Permalink
basic set up
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jun 16, 2024
0 parents commit c5aacf9
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 0 deletions.
16 changes: 16 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The URL the site will be built for
base_url = "https://example.com"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = 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

[extra]
# Put all your custom variables here
5 changes: 5 additions & 0 deletions content/training/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = "Graph"
description = "Graph"
template = "training/main.html"
+++
3 changes: 3 additions & 0 deletions content/training/building/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "Building and Deploying"
+++
3 changes: 3 additions & 0 deletions content/training/building/macos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "macos"
+++
3 changes: 3 additions & 0 deletions content/training/building/windows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "windows"
+++
3 changes: 3 additions & 0 deletions content/training/rust/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "Learning Rust"
+++
3 changes: 3 additions & 0 deletions content/training/rust/benchmark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "benchmarks"
+++
3 changes: 3 additions & 0 deletions content/training/rust/next.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "next"
+++
3 changes: 3 additions & 0 deletions content/training/rust/starter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "starter"
+++
3 changes: 3 additions & 0 deletions content/training/rust/tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "tests"
+++
21 changes: 21 additions & 0 deletions templates/training/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<html>

<body>
hello
{{section.title}}
<br />
{% for subsection in section.subsections %}
{% set subsection = get_section(path=subsection) %}
{{ subsection.title}}
<br />
<ul>
{% for page in subsection.pages %}
<li>{{ page.title }}</li>
{% endfor %}
</ul>
<hr />
{% endfor %}

</body>

</html>

0 comments on commit c5aacf9

Please sign in to comment.