main
parent
e41d9b1cc3
commit
eaad0809c8
|
@ -335,3 +335,8 @@ label {
|
|||
text-decoration: none;
|
||||
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">
|
||||
<title>{% block title %}Picture Puzzle Website{% endblock %}</title>
|
||||
<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>
|
||||
<body>
|
||||
<nav>
|
||||
|
|
|
@ -48,9 +48,9 @@
|
|||
<section class="trending-topics">
|
||||
<h2>Trending Topics</h2>
|
||||
<div class="topics">
|
||||
<a href="#">Instalation</a></br>
|
||||
<a href="#">How to play</a></br>
|
||||
<a href="#">Known issues</a></br>
|
||||
<i class="far fa-comment fa-lg"></i><a href="#"> Instalation</a></br>
|
||||
<i class="far fa-comment fa-lg"></i><a href="#"> How to play</a></br>
|
||||
<i class="far fa-comment fa-lg"></i><a href="#"> Known issues</a></br>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -5,8 +5,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section class="content">
|
||||
<h1>All Posts</h1>
|
||||
<h2>All Posts</h2>
|
||||
<div class="posts">
|
||||
{% for post in posts %}
|
||||
<div class="post">
|
||||
|
@ -17,5 +16,4 @@
|
|||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue