From 719b36d3e02648deba89188d4a24925a03c09582 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 10 Mar 2024 01:37:24 +0100 Subject: Add assets, config.toml and homepage.yml --- config.toml | 33 +++++++++++++++++++++++++++++++++ data/homepage.yml | 32 ++++++++++++++++++++++++++++++++ static/assets/img/bg-masthead.jpg | Bin 0 -> 112273 bytes static/assets/img/favicon.png | Bin 0 -> 5012 bytes static/assets/img/pj1.jpg | Bin 0 -> 243745 bytes static/assets/img/pj2.jpg | Bin 0 -> 259871 bytes static/assets/img/sd-logo-big.png | Bin 0 -> 87651 bytes static/assets/img/sd-logo.png | Bin 0 -> 5012 bytes static/assets/img/splash-simuconf.jpg | Bin 0 -> 136793 bytes 9 files changed, 65 insertions(+) create mode 100644 config.toml create mode 100644 data/homepage.yml create mode 100644 static/assets/img/bg-masthead.jpg create mode 100644 static/assets/img/favicon.png create mode 100644 static/assets/img/pj1.jpg create mode 100644 static/assets/img/pj2.jpg create mode 100644 static/assets/img/sd-logo-big.png create mode 100644 static/assets/img/sd-logo.png create mode 100644 static/assets/img/splash-simuconf.jpg diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..63c7c0f --- /dev/null +++ b/config.toml @@ -0,0 +1,33 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'Speed Dreams - Free and Open Source Motorsport Simulator' +theme = "graysx-hugo" + +[params] +logo = "assets/img/sd-logo.png" +favicon = "assets/img/favicon.png" + +## Menu Items +[menu] + [[menu.main]] + name = "About" + URL = "#about" + weight = 1 + + [[menu.main]] + name = "Gallery" + URL = "/gallery" + weight = 2 + + [[menu.main]] + name = "Blog" + URL = "/blog" + weight = 3 + + [[menu.main]] + name = "Master server" + URL = "#signup" + weight = 4 + +[data] + [[homepage.main]] diff --git a/data/homepage.yml b/data/homepage.yml new file mode 100644 index 0000000..01cbf0b --- /dev/null +++ b/data/homepage.yml @@ -0,0 +1,32 @@ +# Main Title +main: + header: + title : "Speed Dreams" # Title Text + img : "assets/img/sd-logo-big.png" + description : "A Free and Open Source (FOSS) Motorsport Simulation Game." # Title Desc + button: + text: "Download 2.3.0 release" # Button Text + url: "#about" # Button URL + src_button: + text: "Source code" # Button Text + url: "#about" # Button URL + video: "assets/video/intro.webm" + +# About +about: + title: "About Speed Dreams" + desc: "Speed Dreams is a Motorsport Simulator featuring high-quality 3D graphics and an accurate physics engine, all targeting maximum realism. Initially forked from TORCS, it has now reached a clearly higher realism level in visual and physics simulation." + +projects: + card1: + title: "Open community" + text: "Thanks to its active development team and growing community. It mainly aims to implement exciting new features, cars, tracks and AI opponents to make a more enjoyable game for the player, while constantly pushing forward visual and physics realism." + img: "assets/img/pj1.jpg" + card2: + title: "Free software" + text: "Speed Dreams is licensed under the GPLv2-or-later license, with a clear and modular architecture of its C/C++ code base. It is also intended for any research, study or teaching activity, around physics and AI." + img: "assets/img/pj2.jpg" + card3: + title: "Graysx" + text: "Place Cons Rerum Provide SuntSin Incid Fac Nonse Mollitia Quia Itaque! Iusto Necessi Ullam Recusand Nobi Quo Nequ Inulla Beatae Recusand Suscipit Ip Autem Rep Dol Quoquis Inu Rer Odiorem Suscipi Praes Accusant Quia Quosqu Anim Incidunt Nobis Odio Omnis" + img: "assets/img/demo-image-02.jpg" diff --git a/static/assets/img/bg-masthead.jpg b/static/assets/img/bg-masthead.jpg new file mode 100644 index 0000000..16a5526 Binary files /dev/null and b/static/assets/img/bg-masthead.jpg differ diff --git a/static/assets/img/favicon.png b/static/assets/img/favicon.png new file mode 100644 index 0000000..885cc58 Binary files /dev/null and b/static/assets/img/favicon.png differ diff --git a/static/assets/img/pj1.jpg b/static/assets/img/pj1.jpg new file mode 100644 index 0000000..6e3f7aa Binary files /dev/null and b/static/assets/img/pj1.jpg differ diff --git a/static/assets/img/pj2.jpg b/static/assets/img/pj2.jpg new file mode 100644 index 0000000..0f28abb Binary files /dev/null and b/static/assets/img/pj2.jpg differ diff --git a/static/assets/img/sd-logo-big.png b/static/assets/img/sd-logo-big.png new file mode 100644 index 0000000..695162c Binary files /dev/null and b/static/assets/img/sd-logo-big.png differ diff --git a/static/assets/img/sd-logo.png b/static/assets/img/sd-logo.png new file mode 100644 index 0000000..885cc58 Binary files /dev/null and b/static/assets/img/sd-logo.png differ diff --git a/static/assets/img/splash-simuconf.jpg b/static/assets/img/splash-simuconf.jpg new file mode 100644 index 0000000..791a75e Binary files /dev/null and b/static/assets/img/splash-simuconf.jpg differ -- cgit v1.2.3