Browse Source

Mock news page

Danilo Gómez Gómez 5 years ago
parent
commit
cd16dc9472
1 changed files with 17 additions and 1 deletions
  1. 17 1
      layout/news.html

+ 17 - 1
layout/news.html

@@ -3,4 +3,20 @@
 {% set news_selected = True %}
 
 {% block main %}
-{% endblock %}
+<style>
+	:root {
+		--columns: 3;
+	}
+</style>
+{% for _ in range(15) %}
+	<figure>
+		<svg width="16px" height="9px" style="background-color: gray"></svg>
+		<figcaption class="hbox">
+			<div class="caption">
+				<h1>News Title Here / Date</h1>
+				news
+			</div>
+		</figcaption>
+	</figure>
+{% endfor %}
+{% endblock %}