mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 11:16:42 +01:00
some cleanup, add skeleton of zola based website
This commit is contained in:
15
site/templates/_variables.html
Normal file
15
site/templates/_variables.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<style>
|
||||
:root {
|
||||
/* Primary theme color */
|
||||
--primary-color: #202024;
|
||||
/* Primary theme text color */
|
||||
--primary-text-color: #808070;
|
||||
/* Primary theme link color */
|
||||
--primary-link-color: #8080a0;
|
||||
/* Secondary color: the background body color */
|
||||
--secondary-color: #e4dfd7;
|
||||
--secondary-text-color: #303030;
|
||||
/* Highlight text color of table of content */
|
||||
--toc-highlight-text-color: #d46e13;
|
||||
}
|
||||
</style>
|
||||
14
site/templates/index.html
Normal file
14
site/templates/index.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% extends "juice/templates/index.html" %}
|
||||
{% block hero %}
|
||||
<div>
|
||||
<section>
|
||||
<h1 class="text-center heading-text">A WebAssembly based sizecoding platform</h1>
|
||||
</section>
|
||||
<a href="v0.1pre1">
|
||||
<div class="demonstration-gif" style="width:640px;height:512px;background-color:black"></div>
|
||||
</a>
|
||||
</div>
|
||||
{% endblock hero %}
|
||||
|
||||
{% block footer %}
|
||||
{% endblock footer %}
|
||||
Reference in New Issue
Block a user