From c6b6ec0c9e0a980af31da2fe309426e1831d0c14 Mon Sep 17 00:00:00 2001 From: horus Date: Fri, 12 Mar 2021 23:34:13 +0100 Subject: Inline page in website --- index.html | 123 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..8a55a02 --- /dev/null +++ b/index.html @@ -0,0 +1,123 @@ +{% extends "snippets/layout.html" %} + +{% block title '¯\\_(ツ)_/¯ | maximilianmoehring.com' %} + +{% block css %} + html { + width: 100%; + } + .main { + } + h2 { + margin-top: 3rem; + margin-bottom: 3rem; + } + hr { + margin-top: 1rem; + border-top-color: #f07206 !important; + width: 50%; + } + .hidden { + visibility: hidden; + } + .face { + font-size: 2rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + color: #e1e1e1; + } + @media (max-width: 768px ) { + .face { + padding-right: 0px !important; + padding-left: 0px !important; + font-size: 1.5rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + .face-col { + padding-right: 1px; + padding-left: 1px; + } + } + .faces-start { + margin-left: 0; + } + #faces-footer { + position: fixed; + bottom: 0; + width: 100%; + height: 60px; /* Set the fixed height of the footer here */ + line-height: 60px; /* Vertically center the text there */ + /* + background-color: #f5f5f5; + background-color: #67e567; + */ + background-color: #90dd90; + color: #008000; + } + + .btn-outline-light { + border-color: #262626; + } +{% endblock %} + +{% block main %} + +
+ +
+

Best faces on the net

+ Search, find and click to copy. ヾ(⌐■_■)ノ♪ +
+
+ +{% for subtitle, args in faces %} +

{{ subtitle }} +
+

+
+ + {% for face in args %} +
+ +
+ {% endfor %} +{% endfor %} + +
+
+ + + + + +{% endblock %} -- cgit v1.2.3