main
parent
34a3257d1a
commit
66a18e485a
2
main.py
2
main.py
|
@ -10,7 +10,7 @@ users = {
|
|||
posts = [
|
||||
{"alias": "history", "title": "Picture Puzzle history", "image": "picture-puzzle.png"},
|
||||
{"alias": "update-1", "title": "Game 'Picture Puzzle remake' update 1.0", "image": "baobab.png"},
|
||||
{"alias": "how-it-was-made", "title": "Picture Puzzle remake - How it was made", "image": "coding.png"},
|
||||
{"alias": "how-it-was-made", "title": "How the 'Picture Puzzle remake' was made", "image": "coding.png"},
|
||||
{"alias": "difficulties", "title": "Difficulties while making game", "image": "staircase-fail.png"},
|
||||
{"alias": "chatgpt", "title": "ChatGPT as code helper", "image": "gpt-meme.png"},
|
||||
{"alias": "update-1-1", "title": "Game 'Picture Puzzle remake' update 1.1", "image": "skeleton.png"},
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 325 KiB |
Binary file not shown.
Before Width: | Height: | Size: 516 KiB |
Binary file not shown.
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 516 KiB |
|
@ -1,14 +1,14 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Game "Picture Puzzle remake" update 1.0
|
||||
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>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">
|
||||
<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 %}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Game "Picture Puzzle remake" update 1.0
|
||||
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>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>
|
||||
<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 %}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Game "Picture Puzzle remake" update 1.0
|
||||
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 "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>
|
||||
<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 %}
|
|
@ -1,14 +1,14 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Game "Picture Puzzle remake" update 1.0
|
||||
Picture Puzzle history
|
||||
{% 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>
|
||||
<h1>Picture Puzzle history</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>
|
||||
<p class="text"></br>The widgets originated in the Sideshow project at Microsoft Research. Its development started in the summer of 2000 and lasted for 1 year under the Microsoft brand.</p>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
"Picture Puzzle remake" - How it was made
|
||||
How the 'Picture Puzzle remake' was made
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
|
|
@ -1,14 +1,17 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Game "Picture Puzzle remake" update 1.0
|
||||
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.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>
|
||||
<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 %}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<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">
|
||||
<img src="{{ url_for('static', filename='images/baobab.png') }}" alt="Bbabababababab" width="800" height="500">
|
||||
<p class="text"></br>Added:</br></br>
|
||||
- fixed image loading from last album</br>
|
||||
- fixed image choosing</br>
|
||||
|
|
Loading…
Reference in New Issue