15 lines
484 B
HTML
15 lines
484 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Advices for game developers
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
|
|
<section class="content">
|
|
<h1>Advices for game developers</h1>
|
|
<img src="{{ url_for('static', filename='images/advice.png') }}" alt="Advice for programmers" width="800" height="500">
|
|
<p class="text"></br>Advices</p>
|
|
</section>
|
|
{% endblock %}
|