Some minor improvements + mobile support

This commit is contained in:
2021-09-17 15:25:10 +03:00
parent 60c698c0ef
commit 74de406f1d
5 changed files with 30 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<title>thematdev</title>
@@ -12,8 +13,8 @@
<p> Тут можно подпись какую-то сделать </p>
<p> Ваш IQ: {{ random_number }}</p>
<div class="btn-container">
<a class="btn btn-tex">
TeX
<a class="btn" href="https://git.thematdev.org">
Git
</a>
<a class="btn" href="https://wiki.thematdev.org">
Wiki
@@ -21,18 +22,21 @@
<a class="btn" href="https://t.me/thematdev">
TG
</a>
<a class="btn" href="mailto:thematdev@thematdev.org">
@
</a>
</div>
</div>
</div>
<div class="pagebody" id="pb">
<div class="pagebody-inner-section" id="pbi">
<h1>Мои проекты</h1>
<h1><strike>Мои проекты</strike> Кладбище</h1>
<div class="project-container" id="pbic">
{% for project in projects %}
<div class="project-element">
<h1> {{ project.title }}</h1>
<img src="{{ url_for('static', filename=project.image)}}" width=200 height=200>
<p> {{ project.description }} </p>
<p> {{project.description|safe}} </p>
</div>
{% endfor %}
</div>