diff mbox series

[qemu-web,v2,12/16] Add recent blog posts to the front page featured content

Message ID 20201027132015.621733-13-berrange@redhat.com (mailing list archive)
State New, archived
Headers show
Series Re-design the QEMU home page to better present information | expand

Commit Message

Daniel P. Berrangé Oct. 27, 2020, 1:20 p.m. UTC
This makes it more likely that visitors will see and follow links to
interesting blogs.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 assets/css/style.css |  5 +++++
 index.html           | 12 ++++++++++++
 2 files changed, 17 insertions(+)
diff mbox series

Patch

diff --git a/assets/css/style.css b/assets/css/style.css
index 6308084..a9d5b90 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -627,6 +627,11 @@ 
 		display: block;
 		padding-bottom: 2em;
 	}
+ 
+	#quickstart ul.blogs > li
+	{
+		padding-bottom: 0.5em;
+	}
 
 	#quickstart ul > li > strong
 	{
diff --git a/index.html b/index.html
index be1d210..9b38037 100644
--- a/index.html
+++ b/index.html
@@ -35,6 +35,18 @@  bxslider: True
 			  <span><a href="https://wiki.qemu.org/Contribute/SubmitAPatch">Submitting a patch</a></span>
 			  <span><a href="https://wiki.qemu.org/Contribute/FAQ">Contributor FAQ</a></span>
 			</li>
+
+			<li><strong>Recent posts</strong>
+				<ul class="blogs">
+	{% for post in site.posts offset: 0 limit: 4 %}
+					<li><a href="{{ relative_root }}{{ post.url }}">{{ post.title }}</a><br>
+						<div class="posted">{{ post.date | date_to_string }}{%
+						  if post.last_modified_at %} (Updated {{ post.last_modified_at | date_to_string }}) {%
+						  endif %}{% if post.author %} &mdash; by {{ post.author }}{% endif %}
+					</li>
+	{% endfor %}
+				</ul>
+			</li>
 		</ul>
 	</div>
 </div>