diff --git a/lemarche/templates/cms/paid_article_list.html b/lemarche/templates/cms/paid_article_list.html new file mode 100644 index 000000000..48a670dcf --- /dev/null +++ b/lemarche/templates/cms/paid_article_list.html @@ -0,0 +1,45 @@ +{% extends "layouts/base.html" %} +{% load wagtailcore_tags wagtailimages_tags wagtailroutablepage_tags %} +{% block meta_description %}{% endblock %} +{% block title %}{{ page.seo_title }} {{ block.super }}{% endblock %} +{% block body_class %}p-ressources{{ block.super }}{% endblock %} +{% block breadcrumbs %} + + + + + + + + Accueil + + {{ page.title }} + + + + + + +{% endblock breadcrumbs %} +{% block content %} + + + + + + {{ page.title }} + + + + + + + + + {% for article in article_list %} + {% include "cms/article_item.html" with article=article %} + {% endfor %} + + + +{% endblock content %}