diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-06 21:55:42 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-06 21:55:42 +0200 |
| commit | c5b41b589dd826d8cacca84f9fc7958622bdb823 (patch) | |
| tree | c844e68e2ed57d85b702e396deb5202c21b0ca5d | |
| parent | 426f312bfea41d06280e15614d64480710a3fdf0 (diff) | |
placeholder homepage with the new design
| -rw-r--r-- | main/assets/css/main.css | 32 | ||||
| -rw-r--r-- | main/assets/image/fanlisting/crows.png | bin | 0 -> 8632 bytes | |||
| -rw-r--r-- | main/assets/image/neighbors/tarandir.gif | bin | 0 -> 1527 bytes | |||
| -rw-r--r-- | main/templates/main_base.html.j2 | 25 |
4 files changed, 55 insertions, 2 deletions
diff --git a/main/assets/css/main.css b/main/assets/css/main.css index 856b5ab..0113a27 100644 --- a/main/assets/css/main.css +++ b/main/assets/css/main.css @@ -1,6 +1,36 @@ +body { + background-color: #fe8b00ff; +} + canvas.canvas_bg { position: fixed; top: 0; left: 0; z-index: -1; -}
\ No newline at end of file +} + +a, p { + color: white; +} + +main, div.navbar_main { + display: flex; + flex-flow: column; + align-items: center; + margin: auto; + background-color: #666666dd; +} + +div.navbar_parent { + padding: 0.2rem; +} + +@media (min-width: 768px) { + main, header { + padding: 0 5rem 0 5rem !important; + } +} + +main, header { + margin-top: 0.5rem; +} diff --git a/main/assets/image/fanlisting/crows.png b/main/assets/image/fanlisting/crows.png Binary files differnew file mode 100644 index 0000000..2233faf --- /dev/null +++ b/main/assets/image/fanlisting/crows.png diff --git a/main/assets/image/neighbors/tarandir.gif b/main/assets/image/neighbors/tarandir.gif Binary files differnew file mode 100644 index 0000000..8d9541d --- /dev/null +++ b/main/assets/image/neighbors/tarandir.gif diff --git a/main/templates/main_base.html.j2 b/main/templates/main_base.html.j2 index 6bac9c3..fea8660 100644 --- a/main/templates/main_base.html.j2 +++ b/main/templates/main_base.html.j2 @@ -4,7 +4,30 @@ {% block head_extra %}{{ super() }} <link rel="stylesheet" href="{{ site.assets_path }}/css/main.css" />{% endblock %} {% block body %}<canvas id="canvas_bg" class="canvas_bg"></canvas> -{{ super() }} +<div class="bootstrap-wrapper"> + <div class="container"> + <div class="row"> + <div class="col-md-9 navbar_main"> + {{ super() }} + </div> + </div> + <div class="row"> + <main class="col-md-9"> + <p>This is page is work in progress. Meanwhile check my stuff on the navbar at the top of the page.</p> + <h2 style="color: #dddddd; text-align: center">Visit these sites, they have way cooler (and more finished) webpages than me:</h2> + <div align="center"> + <a href="https://www.tar.dev/" target="_blank"><img src="/assets/image/neighbors/tarandir.gif" alt="tar.dev" title="tar.dev" style="width:88px;height:31px;"></a> + <br> + <p>A way cooler neighbor page coming soon... (I swear.)</p> + </div> + <h2 style="color: #dddddd; text-align: center">Fanlistings I'm part of:</h2> + <div align="center"> + <a href="http://fan.after-death.org/crows" target="_blank"><img src="/assets/image/fanlisting/crows.png" alt="http://fan.after-death.org/crows" title="http://fan.after-death.org/crows" style="width:50px;height:50px;"></a> + </div> + </main> + </div> + </div> +</div> <footer> <script src="/assets/js/main.js"></script> </footer>{% endblock %} |
