14 lines
512 B
HTML
14 lines
512 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Game expectations vs. reality
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
|
|
<section class="content">
|
|
<h1>Game expectations vs. reality</h1>
|
|
<img src="{{ url_for('static', filename='images/developers-be-like.png') }}" alt="Developers be like" width="800" height="500">
|
|
<p class="text"></br>Expectations vs. reality</p>
|
|
</section>
|
|
{% endblock %} |