15 lines
		
	
	
		
			517 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			517 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/picture-puzzle.png') }}" alt="Picture Puzzle original" width="800" height="500">
 | 
						|
        <p class="text"></br>Advices</p>
 | 
						|
    </section>
 | 
						|
{% endblock %}
 |