This makes it more likely that visitors will see and follow links to interesting blogs.
Signed-off-by: Daniel P. Berrangé <[email protected]> --- assets/css/style.css | 5 +++++ index.html | 12 ++++++++++++ 2 files changed, 17 insertions(+) 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 %} — by {{ post.author }}{% endif %} + </li> + {% endfor %} + </ul> + </li> </ul> </div> </div> -- 2.26.2
