15 lines
495 B
HTML
15 lines
495 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Difficulties while making game
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
|
|
<section class="content">
|
|
<h1>Difficulties while making game</h1>
|
|
<img src="{{ url_for('static', filename='images/staircase-fail.png') }}" alt="Staircase fail" width="800" height="500">
|
|
<p class="text"></br>Difficulties</p>
|
|
</section>
|
|
{% endblock %}
|