21 lines
776 B
HTML
21 lines
776 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Game "Picture Puzzle remake" update 1.0
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
|
|
<section class="content">
|
|
<h1>Game "Picture Puzzle remake" update 1.0</h1>
|
|
<img src="{{ url_for('static', filename='images/baobab.png') }}" alt="Bbabababababab" width="800" height="500">
|
|
<p class="text"></br>Added:</br></br>
|
|
- fixed image loading from last album</br>
|
|
- fixed image choosing</br>
|
|
- added proper image loading from storage</br>
|
|
- optimized code</br>
|
|
- added sounds for pieces</br>
|
|
- added more music</br></p>
|
|
</section>
|
|
{% endblock %}
|