Initial Commit
This commit is contained in:
commit
7d579c43e7
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "themes/book"]
|
||||
path = themes/book
|
||||
url = https://github.com/getzola/book.git
|
16
config.toml
Normal file
16
config.toml
Normal file
@ -0,0 +1,16 @@
|
||||
# The URL the site will be built for
|
||||
base_url = "https://makina.neocities.org/"
|
||||
|
||||
# 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
|
6
content/_index.md
Normal file
6
content/_index.md
Normal file
@ -0,0 +1,6 @@
|
||||
+++
|
||||
draft = false
|
||||
template = "blank.html"
|
||||
title "Homepage of the Makinist Temple"
|
||||
+++
|
||||
![makina.svg]
|
4
sass/blank-main.sass
Normal file
4
sass/blank-main.sass
Normal file
@ -0,0 +1,4 @@
|
||||
body
|
||||
font-family: sans-serif
|
||||
.head
|
||||
margin: auto
|
5
static/makina.svg
Normal file
5
static/makina.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="symbol" viewBox="0 0 175 175" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<path style="fill:#7b4a4a;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none" d="M 107,6.68 98,16.7 c -5,0 -10,0 -15,0 L 75,4.68 55,10.7 l -1,14 c -5,1 -8,4 -11,7 l -14,-4 -12,15 6,13 c -1,2 -2,4 -3,7 -1,3 -1,6 -1,9 l -15,5 v 20 l 13,4.3 c 1,5 2,10 5,15 l -8,11 11,16 14,-3 c 4,3 7,5 11,9 l 1,14 19,6 8,-10 c 5,0 10,0 16,-1 l 8,12 19,-7 1,-13 c 5,-3 9,-6 13,-9 l 14,4 11,-16 -7,-12 1,-4 c 2,-4 2,-8 2,-10 l 15,-6.3 v -20 l -13,-4 c -1,-4 -3,-9 -5,-13 l 8,-11 -11,-17 -14,4 c -4,-3 -7,-6 -9,-9 l -1,-13 z" />
|
||||
<path style="stroke-width:0.057" d="M 87 52.7 C 47 52.7 14 87.7 14 87.7 C 14 87.7 47 123 87 123 C 128 123 160 87.7 160 87.7 C 160 87.7 128 52.7 87 52.7 z M 87 57.7 C 104 57.7 118 70.7 118 87.7 C 118 105 104 118 87 118 C 71 118 57 105 57 87.7 C 57 70.7 71 57.7 87 57.7 z M 87 63.7 C 74 63.7 63 73.7 63 87.7 C 63 101 74 112 87 112 C 101 112 112 101 112 87.7 C 112 73.7 101 63.7 87 63.7 z M 87 75.7 C 94 75.7 100 80.7 100 87.7 C 100 94.7 94 99.9 87 99.9 C 81 99.9 75 94.7 75 87.7 C 75 80.7 81 75.7 87 75.7 z " />
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
12
templates/blank.html
Normal file
12
templates/blank.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ title }}</title>
|
||||
<style>
|
||||
@include "blank-main.css";
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
{{ content }}
|
||||
</body>
|
||||
</html>
|
1
themes/book
Submodule
1
themes/book
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit f84330c575f53f3ac017e71190b2275eaa804ae7
|
Loading…
Reference in New Issue
Block a user