annotate community-news.html @ 175:92ec1212b3a6

Prepare for Octave 5.2.0 release. * community-news.html: Increment community-news-page-serial counter for display in Octave's community news. * _posts/2020-01-31-octave-5.2.0-released.markdown: Add release post.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Fri, 24 Jan 2020 15:24:22 +0900
parents b035f3ca13be
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
1 ---
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
2 layout: null
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
3 ---
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
4
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
5 <!--
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
6
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
7 This is the community news page for Octave. It is displayed in the
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
8 "Community News" display area of the Octave GUI. It should not have
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
9 the usual page header that other pages on the Octave web site have.
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
10 The following string must be present for Octave to recognize and
168
b035f3ca13be * community-news.html: Overhaul file.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 167
diff changeset
11 display this page as the community news page. Don't forget to increment
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
12 the `community-news-page-serial` number by one in order to show new
168
b035f3ca13be * community-news.html: Overhaul file.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 167
diff changeset
13 entries in the GUI:
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
14
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
15 this-is-the-gnu-octave-community-news-page
175
92ec1212b3a6 Prepare for Octave 5.2.0 release.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 168
diff changeset
16 community-news-page-serial=13
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
17
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
18 -->
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
19
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
20 <!DOCTYPE html>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
21 <html>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
22 <head>
168
b035f3ca13be * community-news.html: Overhaul file.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 167
diff changeset
23 <meta charset="utf-8">
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
24 <title>Octave Community News</title>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
25 </head>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
26 <body>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
27
129
88b2480e271a Newsfeed: Introduce category "release" to mark very important news.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 118
diff changeset
28 {% for post in site.categories.release limit:3 %}
118
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
29
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
30 <h2><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
31
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
32 {{ post.excerpt }}
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
33
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
34 <small><em>&mdash; The Octave Developers, {{ post.date | date: "%b %-d, %Y" }}</em></small>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
35
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
36 {% endfor %}
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
37
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
38 </body>
49c2fa89daa8 Merge community-news related layout and Markdown logic.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
39 </html>