Added projects section

This commit is contained in:
2020-11-07 15:10:52 +03:00
parent 65255a2fd3
commit 30a21270e3
9 changed files with 148 additions and 15 deletions

View File

@@ -24,6 +24,25 @@
</div>
</div>
</div>
<div class="pagebody" id="pb">
<div class="pagebody-inner-section" id="pbi">
<h1>Мои проекты</h1>
<div class="project-container" id="pbic">
{% for row in rows %}
<div class="project-container-row">
{% for project in row %}
<div class="project-element">
<h1> {{ project.title }}</h1>
<img src="{{ url_for('static', filename='assets/{0}'.format(project.image))}}" width=200 height=200>
<p> {{ project.description }} </p>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
<script src="{{ url_for('static', filename='js/projects.js') }}"></script>
Идея про Гауссово распределение вместо обычного рандома: <a href="https://t.me/Prentor">Prentor</a> и <a href="https://t.me/pavel_the_best"> pavel_the_best </a>
</body>
Идея про Гауссово распределение вместо обычного рандома: <a href="https://t.me/Prentor">Prentor</a> и <a href="https://t.me/pavel_the_best"> pavel_the_best </a>
</html>