clone of github.com/decent-newsroom/newsroom
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.
 
 
 
 
 
 

32 lines
968 B

{% extends 'layout.html.twig' %}
{% block body %}
<section class="d-flex gap-3 center ln-section--newsstand">
<div class="container mt-3 mb-3">
<h1>Compose Reading List</h1>
</div>
</section>
<div class="container mt-4">
{% if addedArticle %}
<div class="alert alert-success" role="alert">
<strong>Article added!</strong> The article has been added to your reading list.
</div>
{% endif %}
<div class="card">
<div class="card-body">
<h5 class="card-title">Quick Add Articles</h5>
<p class="text-muted small">Paste article links below (one per line)</p>
<twig:ReadingListQuickInputComponent />
</div>
</div>
</div>
{% endblock %}
{% block aside %}
{# Future sidebar content can go here #}
<twig:ReadingListDraftComponent />
{% endblock %}