Compare commits

3 Commits

Author SHA1 Message Date
d365dd4d25 Console fixed, hide about and projects page
All checks were successful
Build Zola Website / build (pull_request) Successful in 17s
2023-12-18 03:27:31 +01:00
f168112294 Trying to add commands into console 2023-12-18 01:27:09 +01:00
e7e8b78904 Added: able to write keystrokes into command line 2023-12-15 14:54:15 +01:00
3 changed files with 4 additions and 5 deletions

View File

@@ -16,8 +16,7 @@ smart_punctuation = true
git = "https://git.filiprojek.cz/fr/website" git = "https://git.filiprojek.cz/fr/website"
nav_items = [ nav_items = [
{name="Home", path="/"}, {name="Home", path="/"},
{name="About", path="/about"}, #{name="About", path="/about"},
{name="Projects", path="/projects/"}, #{name="Projects", path="/projects/"},
{name="Posts", path="/posts"}
] ]

View File

@@ -1,7 +1,7 @@
.content { .content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: 2rem 20%; margin: 2rem 8rem;
} }
.content { .content {

View File

@@ -7,6 +7,6 @@
{% block content %} {% block content %}
<section class="console content" > <section class="console content" >
</section> </section>
<textarea class="mobile-input" style="display: none" autofocus></textarea> <textarea class="mobile-input" style="display: none" disabled autofocus></textarea>
<script src="/js/console.js" defer></script> <script src="/js/console.js" defer></script>
{% endblock content %} {% endblock content %}