-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
organize web directory a bit better (content is now in web/src)
- Loading branch information
Showing
36 changed files
with
4,814 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
source: src | ||
destination: public_html | ||
|
||
site: | ||
title: The Nonvisual Gaming Toolkit | ||
description: website for the NonVisual Gaming Toolkit (nvgt) audiogame creation engine | ||
base_url: https://nvgt.gg | ||
title: The Nonvisual Gaming Toolkit | ||
description: website for the NonVisual Gaming Toolkit (nvgt) audiogame creation engine | ||
base_url: https://nvgt.gg | ||
sitemap: sitemap.xml | ||
data: | ||
nav: | ||
- [Home, "/"] | ||
- ["Documentation", "/docs"] | ||
- [Blog, "/blog"] | ||
- [Source code on Github, "https://github.com/samtupy/nvgt"] | ||
|
||
posts: | ||
title: The NVGT blog | ||
description: The NVGT blog is where developers and contributors to the engine can post helpful tips about it's use, news and updates, insites about development, or anything else that doesn't fit very well in the documentation or in other areas of this site. It is a very minamilistic blogging setup using a static site generator and is meant for informational purposes only. | ||
dir: blog | ||
rss: blog.xml | ||
jsonfeed: blog.json | ||
title: The NVGT blog | ||
description: The NVGT blog is where developers and contributors to the engine can post helpful tips about it's use, news and updates, insites about development, or anything else that doesn't fit very well in the documentation or in other areas of this site. It is a very minamilistic blogging setup using a static site generator and is meant for informational purposes only. | ||
dir: blog | ||
rss: blog.xml | ||
jsonfeed: blog.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
{% if page.published_date -%} | ||
<title>{{ page.title }} – {{ collections.posts.title }}</title> | ||
{% else %} | ||
<title>{{ page.title }} – {{ site.title }}</title> | ||
{%- endif %} | ||
<style> | ||
details summary | ||
{ | ||
cursor: pointer; | ||
} | ||
details summary > * | ||
{ | ||
display: inline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<a href="#content-anchor">Skip to content</a> | ||
<div id="navigation"><nav> | ||
{%- assign permalink = "/" | append: page.permalink -%} | ||
<ul class="links" style="list-style-type:none;"> | ||
{% for item in site.data.nav -%} | ||
{%- assign item_with_index = item[0] | append: "/index.html" %} | ||
{%- if permalink == item[0] or permalink == item_with_index -%} | ||
<li><a href="{{ item[0] }}" aria-current="page">{{ item[1] }}</a></li> | ||
{% else -%} | ||
<li><a href="{{ item[0] }}">{{ item[1] }}</a></li> | ||
{% endif %} | ||
{%- endfor -%} | ||
</ul> | ||
</div></nav> | ||
<main><div id="content"> | ||
<div id="content-anchor"></div> | ||
{{ page.content }} | ||
</div></main> | ||
<footer><div id="footer"> | ||
© 2022–{{ site.time | date: "%Y" }} <a href="https://samtupy.com">Sam Tupy Productions</a> | ||
</div></footer> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.