You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
379 B
10 lines
379 B
{% extends 'base.html.twig' %} |
|
|
|
{% block body %} |
|
<h1>Your Reading Lists</h1> |
|
<p>Create and share curated reading lists.</p> |
|
<div class="d-flex flex-row gap-2"> |
|
<a class="btn btn-primary" href="{{ path('read_wizard_setup') }}">Create a Reading List</a> |
|
<a class="btn btn-secondary" href="{{ path('reading_list_compose') }}">Open Composer</a> |
|
</div> |
|
{% endblock %}
|
|
|