36 lines
2 KiB
HTML
36 lines
2 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Welcome, archivist!</h2>
|
|
<h3>Latest Feeds</h3>
|
|
<ul>
|
|
{% if not feeds %}<p>No feeds found.</p>{% endif %}
|
|
{% for feed in feeds %}
|
|
<li>
|
|
<a href="{{ url_for('feed', feed_url=feed.url) }}">{{ feed.url }}</a>
|
|
<p>{{ feed.description }}</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h3>FAQ</h3>
|
|
<summary>What are web feeds?</summary>
|
|
<p>
|
|
Web feeds are a way to distribute content on the web. They allow users to access updates from websites without having to visit them directly. Feeds are typically used for news websites, blogs, and other sites that frequently update content.
|
|
<br>
|
|
You can read more about web feeds on <a href="https://en.wikipedia.org/wiki/Web_feed">Wikipedia</a>.
|
|
</p>
|
|
<hr>
|
|
<summary>What is FeedVault?</summary>
|
|
<p>
|
|
FeedVault is a service that archives web feeds. It allows users to access and search for historical content from various websites. The service is designed to preserve the history of the web and provide a reliable source for accessing content that may no longer be available on the original websites.
|
|
</p>
|
|
<hr>
|
|
<summary>Why archive feeds?</summary>
|
|
<p>
|
|
Web feeds are a valuable source of information, and archiving them ensures that the content is preserved for future reference. By archiving feeds, we can ensure that historical content is available for research, analysis, and other purposes. Additionally, archiving feeds can help prevent the loss of valuable information due to website changes, outages, or other issues.
|
|
</p>
|
|
<hr>
|
|
<summary>How can I access the archived feeds?</summary>
|
|
<p>
|
|
You can access the archived feeds through the website or API. The website provides a user interface for searching and browsing the feeds, while the API allows you to access the feeds programmatically. You can also download the feeds in various formats, such as JSON, XML, or RSS.
|
|
</p>
|
|
{% endblock content %}
|