rsspls.7bit.org/templates/index.html

57 lines
2.5 KiB
HTML
Raw Normal View History

{% extends "juice/templates/index.html" %}
2024-03-10 04:31:33 +00:00
{% block title %}{{ section.title }} - {{ section.description }} {% endblock title %}
{% block hero %}
<section class="text-center">
2024-03-10 04:31:33 +00:00
<h1 class="heading-text" style="font-size: 50px">{{ section.description }}</h1>
<h3 class="title-text">
2024-03-10 04:31:33 +00:00
RSS Please is a command line tool that runs on Linux, macOS, Windows, BSD, and more.
</h3>
2024-03-10 04:31:33 +00:00
<div class="text">
{% set releases = load_data(url="https://github.com/wezm/rsspls/releases.atom", format="xml") %}
{% set latest_release = releases.feed.entry | first %}
{% set latest_version = latest_release.link['@href'] | split(pat="/") | last %}
<a href="/install/" class="link-button install-button" style="margin-top: 2em" data-version="{{ latest_version }}">Install</a>
</div>
</section>
2024-03-10 04:31:33 +00:00
<div class="text-center">
<img class="hero-image" style="image-rendering: pixelated;" src="{{ get_url(path="screenshot.png") }}" alt="Screenshot of two invocations of rsspls in a terminal. The first fetches and generates the feeds, the second does not change anything as the source pages are unmodifed." title="Screenshot of rsspls running on a Linux system over an SSH connection in ssheven on Mac OS 8.">
</div>
2024-03-10 04:31:33 +00:00
<div class="explore-more text text-center"
onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
Explore More ⇩
</div>
{% endblock hero %}
{% block head %}
2024-03-10 04:31:33 +00:00
<link rel="stylesheet" href="{{ get_url(path="home.css") }}">
<link rel="stylesheet" href="{{ get_url(path="syntax.css") }}">
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="index.xml", trailing_slash=false) }}">
{% endblock %}
{% block fonts %}
{% endblock %}
{% block favicon %}
<link rel="icon" href="{{ get_url(path="feed-icon.svg") }}">
{% endblock %}
2024-03-10 04:31:33 +00:00
{% block content %}
<div id="features" class="heading-text">Overview</div>
{{ section.content | safe }}
{% endblock content %}
{% block footer %}
<footer>
<small class="subtext">
2024-03-10 04:31:33 +00:00
Copyright © {#2024 &ndash;#} {{ now() | date(format="%Y") }}
<a href="{{ config.extra.homepage }}">{{ config.extra.author }}</a>
&mdash; <a href="https://forge.wezm.net/wezm/rsspls.7bit.org">Website Source</a>
&mdash; <a href="https://github.com/sponsors/wezm">Sponsor on GitHub</a>
</small>
</footer>
2024-03-10 04:31:33 +00:00
<script src="{{ get_url(path="home.js") }}" type="text/javascript"></script>
{% endblock %}