comparison pages/community-news.html @ 215:dedb85c54245

Reorganize homepage.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Thu, 10 Sep 2020 17:47:36 +0900
parents
children fe59d0118a2b
comparison
equal deleted inserted replaced
214:fe5dcb23372a 215:dedb85c54245
1 ---
2 layout: null
3 permalink: community-news
4 ---
5
6 <!--
7
8 This is the community news page for Octave. It is displayed in the
9 "Community News" display area of the Octave GUI. It should not have
10 the usual page header that other pages on the Octave web site have.
11 The following string must be present for Octave to recognize and
12 display this page as the community news page. Don't forget to increment
13 the `community-news-page-serial` number by one in order to show new
14 entries in the GUI:
15
16 this-is-the-gnu-octave-community-news-page
17 community-news-page-serial=13
18
19 -->
20
21 <!DOCTYPE html>
22 <html>
23 <head>
24 <meta charset="utf-8">
25 <title>Octave Community News</title>
26 </head>
27 <body>
28
29 {% for post in site.categories.release limit:3 %}
30
31 <h2><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>
32
33 {{ post.excerpt }}
34
35 <small><em>&mdash; The Octave Developers, {{ post.date | date: "%b %-d, %Y" }}</em></small>
36
37 {% endfor %}
38
39 </body>
40 </html>