@@ -627,6 +627,11 @@
display: block;
padding-bottom: 2em;
}
+
+ #quickstart ul.blogs > li
+ {
+ padding-bottom: 0.5em;
+ }
#quickstart ul > li > strong
{
@@ -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 %} — by {{ post.author }}{% endif %}
+ </li>
+ {% endfor %}
+ </ul>
+ </li>
</ul>
</div>
</div>
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(+)