main
parent
e41d9b1cc3
commit
eaad0809c8
|
@ -335,3 +335,8 @@ label {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
i.far.fa-comment {
|
||||||
|
font-size: 24px;
|
||||||
|
transform: translateY(-2px);
|
||||||
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{% block title %}Picture Puzzle Website{% endblock %}</title>
|
<title>{% block title %}Picture Puzzle Website{% endblock %}</title>
|
||||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}">
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}">
|
||||||
|
<script src="https://kit.fontawesome.com/65669fdef7.js" crossorigin="anonymous"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
@ -48,9 +48,9 @@
|
||||||
<section class="trending-topics">
|
<section class="trending-topics">
|
||||||
<h2>Trending Topics</h2>
|
<h2>Trending Topics</h2>
|
||||||
<div class="topics">
|
<div class="topics">
|
||||||
<a href="#">Instalation</a></br>
|
<i class="far fa-comment fa-lg"></i><a href="#"> Instalation</a></br>
|
||||||
<a href="#">How to play</a></br>
|
<i class="far fa-comment fa-lg"></i><a href="#"> How to play</a></br>
|
||||||
<a href="#">Known issues</a></br>
|
<i class="far fa-comment fa-lg"></i><a href="#"> Known issues</a></br>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,7 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<section class="content">
|
<h2>All Posts</h2>
|
||||||
<h1>All Posts</h1>
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
{% for post in posts %}
|
{% for post in posts %}
|
||||||
<div class="post">
|
<div class="post">
|
||||||
|
@ -17,5 +16,4 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue