<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Lepagito - Goodies</title><link href="http://lepagito.artliba.org/" rel="alternate"></link><link href="http://lepagito.artliba.org/feeds/goodies.atom.xml" rel="self"></link><id>http://lepagito.artliba.org/</id><updated>2022-05-14T00:00:00+02:00</updated><subtitle>A lovely pelican theme</subtitle><entry><title>Groups of tags</title><link href="http://lepagito.artliba.org/2a-tag-groups.html" rel="alternate"></link><published>2022-05-14T00:00:00+02:00</published><updated>2022-05-14T00:00:00+02:00</updated><author><name>I. Lepage and P. Hesse</name></author><id>tag:lepagito.artliba.org,2022-05-14:/2a-tag-groups.html</id><content type="html">&lt;p&gt;In many cases, the tag list becomes very long
and contains heterogeneous tags.
It should be better to group them: this feature is
implemented in the &lt;a class="reference external" href="http://lepagito.artliba.org"&gt;Lepagito&lt;/a&gt; theme.
For instance, in the &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; file:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
TAGS_BY_GROUPS = (
  ('Color',  ('blue', 'red', 'yellow')),
  ('State',  ('solid', 'liquid', 'gas')),
  ('Firtname', ('Isabelle', 'Pierre', 'Paul', 'Jacques')),)
&lt;/pre&gt;
&lt;p&gt;If a tag appears in an article but has any defined group,
it will appear in the 'Others' group.&lt;/p&gt;
</content><category term="Goodies"></category><category term="tag-group"></category><category term="pelicanconf.py"></category></entry><entry><title>Archives and calendar</title><link href="http://lepagito.artliba.org/2b-calendar.html" rel="alternate"></link><published>2022-04-14T00:00:00+02:00</published><updated>2022-04-14T00:00:00+02:00</updated><author><name>I. Lepage and P. Hesse</name></author><id>tag:lepagito.artliba.org,2022-04-14:/2b-calendar.html</id><summary type="html">&lt;p&gt;The &lt;a class="reference external" href="archives.html"&gt;Archives&lt;/a&gt;, available at the footer menu,
starts with a calendar, that provides a concise view.
Years and months are both links to periodic archives.
In the &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; file, the two following variables
should be defined, for instance as:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
YEAR_ARCHIVE_SAVE_AS  = 'archive_{date:%Y}.html'
MONTH_ARCHIVE_SAVE_AS = 'archive_{date:%Y}_{date:%m}.html'
&lt;/pre&gt;
&lt;p&gt;The calendar view do not refer to any pelican plugin:
this is an original functionality of the &lt;a class="reference external" href="http://lepagito.artliba.org"&gt;Lepagito&lt;/a&gt; theme.
If you don't want the calendar to appear on the &lt;a class="reference external" href="archives.html"&gt;archives&lt;/a&gt; page,
you could either not define at least one of these variable,
or set:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
ARCHIVES_CALENDAR = False
&lt;/pre&gt;
&lt;p&gt;By …&lt;/p&gt;</summary><content type="html">&lt;p&gt;The &lt;a class="reference external" href="archives.html"&gt;Archives&lt;/a&gt;, available at the footer menu,
starts with a calendar, that provides a concise view.
Years and months are both links to periodic archives.
In the &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; file, the two following variables
should be defined, for instance as:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
YEAR_ARCHIVE_SAVE_AS  = 'archive_{date:%Y}.html'
MONTH_ARCHIVE_SAVE_AS = 'archive_{date:%Y}_{date:%m}.html'
&lt;/pre&gt;
&lt;p&gt;The calendar view do not refer to any pelican plugin:
this is an original functionality of the &lt;a class="reference external" href="http://lepagito.artliba.org"&gt;Lepagito&lt;/a&gt; theme.
If you don't want the calendar to appear on the &lt;a class="reference external" href="archives.html"&gt;archives&lt;/a&gt; page,
you could either not define at least one of these variable,
or set:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
ARCHIVES_CALENDAR = False
&lt;/pre&gt;
&lt;p&gt;By default, this variable is True.&lt;/p&gt;
</content><category term="Goodies"></category><category term="calendar"></category><category term="pelicanconf.py"></category></entry><entry><title>Footer menus</title><link href="http://lepagito.artliba.org/2c-footer-menus.html" rel="alternate"></link><published>2022-03-14T00:00:00+01:00</published><updated>2022-03-14T00:00:00+01:00</updated><author><name>I. Lepage and P. Hesse</name></author><id>tag:lepagito.artliba.org,2022-03-14:/2c-footer-menus.html</id><summary type="html">&lt;p&gt;This theme provides an optional horizontal menu
located at the bottom if each page: the footer menu.
It could be useful for contact and license entries:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
FOOTERMENUITEMS = (
  ('About',    'about.html'),
  ('Contact',  'contact.html'),
  ('Links',    'links.html'),
  ('License',  'license.html'),
)
&lt;/pre&gt;
&lt;p&gt;A second bottom horizontal menu presents the &lt;a class="reference external" href="archives.html"&gt;Archives&lt;/a&gt; and feeds.
This menu is active by default and could be removed with:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
FOOTERMENUFEED = False
&lt;/pre&gt;
&lt;p&gt;Finally, a third bottom horizontal menu could optionally defined
by the &lt;tt class="docutils literal"&gt;SOCIAL&lt;/tt&gt; standard variable of the pelican environment.
This variable is not used in the &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; file of the
present documentation.
As for the &lt;tt class="docutils literal"&gt;MENUITEMS&lt;/tt&gt; and &lt;tt class="docutils literal"&gt;FOOTERMENUITEMS …&lt;/tt&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;This theme provides an optional horizontal menu
located at the bottom if each page: the footer menu.
It could be useful for contact and license entries:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
FOOTERMENUITEMS = (
  ('About',    'about.html'),
  ('Contact',  'contact.html'),
  ('Links',    'links.html'),
  ('License',  'license.html'),
)
&lt;/pre&gt;
&lt;p&gt;A second bottom horizontal menu presents the &lt;a class="reference external" href="archives.html"&gt;Archives&lt;/a&gt; and feeds.
This menu is active by default and could be removed with:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
FOOTERMENUFEED = False
&lt;/pre&gt;
&lt;p&gt;Finally, a third bottom horizontal menu could optionally defined
by the &lt;tt class="docutils literal"&gt;SOCIAL&lt;/tt&gt; standard variable of the pelican environment.
This variable is not used in the &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; file of the
present documentation.
As for the &lt;tt class="docutils literal"&gt;MENUITEMS&lt;/tt&gt; and &lt;tt class="docutils literal"&gt;FOOTERMENUITEMS&lt;/tt&gt; variables,
it consists of a list of tuples (title, url).
Note that this menu points to pages such as &lt;tt class="docutils literal"&gt;about.html&lt;/tt&gt;,
and there is a corresponding &lt;tt class="docutils literal"&gt;about.rst&lt;/tt&gt; source file
that looks like:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
About
------
:date: 2023-02-14
:status: hidden

Yes, we have writen this amazing blog!
&lt;/pre&gt;
&lt;p&gt;Observe that such a file is not a blog article:
it has the status &lt;em&gt;hidden&lt;/em&gt;
and do not appear in the navigation of articles.&lt;/p&gt;
</content><category term="Goodies"></category><category term="pelicanconf.py"></category></entry><entry><title>Internationalization (I18N)</title><link href="http://lepagito.artliba.org/2d-i18n.html" rel="alternate"></link><published>2022-02-14T00:00:00+01:00</published><updated>2022-02-14T00:00:00+01:00</updated><author><name>I. Lepage and P. Hesse</name></author><id>tag:lepagito.artliba.org,2022-02-14:/2d-i18n.html</id><content type="html">&lt;p&gt;All labels introduced by the present theme are modifiable.
The present &lt;tt class="docutils literal"&gt;pelicanconf.py&lt;/tt&gt; provides its complete list
together with the default English values:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
I18N_CATEGORY  = 'Category'
I18N_TAGS      = '#Tags'
I18N_TOP       = 'Top'
I18N_PAGE      = 'Page'
I18N_READ_MORE = 'Read more'
I18N_ARCHIVES  = 'Archives'
I18N_FEED_ALL_ATOM = 'Feed'
I18N_NEWEST    = 'Newest'
I18N_OLDEST    = 'Oldest'
I18N_FIRST     = 'First'
I18N_LAST      = 'Last'
I18N_BACK_TO   = 'Back to'
I18N_OTHERS    = 'Others'
&lt;/pre&gt;
</content><category term="Goodies"></category><category term="internationalization"></category><category term="pelicanconf.py"></category></entry></feed>