From 42dbe038cf115ecf26057969300545cbc43969c1 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 12 Jan 2025 16:05:25 +1100 Subject: [PATCH] Tweaked the style --- _config.yml | 1 - _includes/elements/attribution.html | 9 +++++ _includes/elements/title.html | 8 ++++ _layouts/page.html | 59 +++++++++++++++++++++++++++++ index.md | 6 --- 5 files changed, 76 insertions(+), 7 deletions(-) create mode 100644 _includes/elements/attribution.html create mode 100644 _includes/elements/title.html create mode 100644 _layouts/page.html diff --git a/_config.yml b/_config.yml index 4bcdf52..84adb7f 100644 --- a/_config.yml +++ b/_config.yml @@ -2,7 +2,6 @@ title: The Toy Programming Language description: Documentation For The Toy Programming Language keywords: programming,coding author: Kayne Ruse (Ratstail91) -version: 2.x collections: getting_started: diff --git a/_includes/elements/attribution.html b/_includes/elements/attribution.html new file mode 100644 index 0000000..663de79 --- /dev/null +++ b/_includes/elements/attribution.html @@ -0,0 +1,9 @@ + + + + + + +
+ Theme adapted from programming pages theme v{{ layout.theme_version }} ({{ layout.theme_url }}) +
\ No newline at end of file diff --git a/_includes/elements/title.html b/_includes/elements/title.html new file mode 100644 index 0000000..c334ab2 --- /dev/null +++ b/_includes/elements/title.html @@ -0,0 +1,8 @@ +{% include icon.liquid id='bars' %} Menu + +{% include icon.liquid id='home' %} Home + +
+{{ site.title }} + +
\ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..81c8fdf --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,59 @@ +--- +layout: base +theme_version: 0.5.22 +theme_url: https://github.com/pixeldroid/programming-pages +--- + + + + + + + + +
+ +
+ + +
+ + +
+
+
+{{ content }} +
+ + + +
+{% include elements/attribution.html %} +
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/index.md b/index.md index 83bf9ed..3b00e7f 100644 --- a/index.md +++ b/index.md @@ -7,12 +7,6 @@ title: The Toy Programming Language -
- -
- -
- The Toy Programming Language is an imperative, bytecode-interpreted, embeddable scripting language. Rather than functioning independently, it serves as part of another program, the "host". This design allows for straightforward customization by both the host's developers and end users, achieved by exposing program logic through text files. This website presents the documentation for Toy version 2.x.