18 lines
654 B
HTML
18 lines
654 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Game "Picture Puzzle remake" update 1.1
|
|
{% 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.1</h1>
|
|
<img src="{{ url_for('static', filename='images/skeleton.png') }}" alt="Skeleton waiting" width="800" height="500">
|
|
<p class="text"></br>Added:</br></br>
|
|
- add small notes on button hover</br>
|
|
- fixed button placement</br>
|
|
- enhanced design of interface</br></p>
|
|
</section>
|
|
{% endblock %}
|