{% extends "layouts/blogroll.njk" %} {% block blogroll %}
{% if isNew %}
{{ button({ type: "button", text: __("blogroll.blogs.form.discover"), classes: "button--secondary", attributes: { id: "discoverBtn" } }) }}
{{ __("blogroll.blogs.form.discoverHint") }}

{% endif %}
{{ __("blogroll.blogs.form.feedUrlHint") }}
{{ __("blogroll.blogs.form.titleHint") }}
{{ __("blogroll.blogs.form.siteUrlHint") }}
{{ __("blogroll.blogs.form.categoryHint") }}
{{ __("blogroll.blogs.form.tagsHint") }}
{{ __("blogroll.blogs.form.notesHint") }}
{{ button({ type: "submit", text: __("blogroll.blogs.create") if isNew else __("blogroll.blogs.save") }) }} {{ button({ href: baseUrl + "/blogs", text: __("blogroll.cancel"), classes: "button--secondary" }) }}
{% if not isNew and items %} {% call section({ title: __("blogroll.blogs.recentItems") }) %} {% if items.length > 0 %} {% else %} {{ prose({ text: __("blogroll.blogs.noItems") }) }} {% endif %} {% endcall %} {% endif %} {% if isNew %} {% endif %} {% endblock %}