page_status, minor style change

This commit is contained in:
magmaus3 2023-08-09 23:36:20 +02:00
parent f485daaed5
commit 90a58c28c6
Signed by: magmaus3
GPG key ID: 966755D3F4A9B251
7 changed files with 30 additions and 3 deletions

View file

@ -1,9 +1,11 @@
--- ---
title: "{{ replace .Name "-" " " | title }}" title: "{{ replace .Name "-" " " | title }}"
description: "{{ .Description }}"
date: {{ .Date }} date: {{ .Date }}
type: "lua_func"
--- ---
# `{{ .Name }}` {{ short_description }} # `{{ .Name }}` {{ .Description }}
## Usage ## Usage

View file

@ -1,5 +1,6 @@
--- ---
title: 'List of Lua Functions' title: 'List of Lua Functions'
layout: 'list'
--- ---
Some commands might have documentation on the [Smashing Tech Wiki](https://antifandom.com/smashhitlab/wiki/List_of_Lua_Functions) Some commands might have documentation on the [Smashing Tech Wiki](https://antifandom.com/smashhitlab/wiki/List_of_Lua_Functions)

View file

@ -1,3 +1,6 @@
---
draft: true
---
# `{{ cmd }}` {{ short_description }} # `{{ cmd }}` {{ short_description }}
## Usage ## Usage

View file

@ -1,9 +1,10 @@
--- ---
title: 'mgCameraShake' title: 'mgCameraShake'
description: 'used to visually shake the camera'
layout: 'LuaFunctions'
page_status: 'stub'
--- ---
# `mgCameraShake` used to visually shake camera
## Usage ## Usage
```lua ```lua

View file

@ -1,3 +1,9 @@
baseURL = 'http://example.org/' baseURL = 'http://example.org/'
languageCode = 'en-us' languageCode = 'en-us'
title = 'Granny Smith Technical' title = 'Granny Smith Technical'
[taxonomies]
# category = 'categories'
page_status = 'page_status'
# tag = 'tags'

View file

@ -0,0 +1,9 @@
{{ define "main" }}
<article>
<a href="..">go up</a>
<header>
<h1><code>{{ .Title }}</code> {{ .Description }}</h1>
</header>
{{ .Content }}
</article>
{{ end }}

View file

@ -11,6 +11,11 @@ nav {
box-shadow: 0px 5px 15px #121212; box-shadow: 0px 5px 15px #121212;
} }
pre > code {
padding: 10px;
font-size: inherit;
}
nav a { nav a {
width: fit-content; width: fit-content;
padding: 0.2em; padding: 0.2em;