Ajout du plugin drafts
This commit is contained in:
parent
bd383f9b4a
commit
414d9cfaa3
2 changed files with 15 additions and 1 deletions
|
@ -22,4 +22,7 @@ NUIR_AUTHORS = {
|
|||
|
||||
## Support de plugins
|
||||
|
||||
Ce thème ne supporte pour l’instant que le plugin [Series](https://github.com/getpelican/pelican-plugins/tree/master/series).
|
||||
Ce thème supporte les plugins suivant :
|
||||
|
||||
* [Series](https://github.com/getpelican/pelican-plugins/tree/master/series).
|
||||
* [Drafts](https://github.com/noirbizarre/pelican-drafts)
|
||||
|
|
11
templates/drafts.html
Normal file
11
templates/drafts.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "macros.html" as macro %}
|
||||
{% block content %}
|
||||
<div id="cat-header">
|
||||
<h1>Brouillons</h1>
|
||||
<hr />
|
||||
</div>
|
||||
|
||||
{{ macro.listArticles(drafts) }}
|
||||
|
||||
{% endblock content %}
|
Loading…
Reference in a new issue