2024-03-08 11:57:12 +00:00
{% extends "juice/templates/index.html" %}
2024-03-10 05:30:18 +00:00
{% block title %}{{ section.title }} - {{ section.description }}{% endblock title %}
2024-03-10 04:31:33 +00:00
2024-03-08 11:57:12 +00:00
{% 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 >
2024-03-08 11:57:12 +00:00
< 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.
2024-03-08 11:57:12 +00:00
< / 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 >
2024-03-08 11:57:12 +00:00
< / 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-08 11:57:12 +00:00
2024-03-10 04:31:33 +00:00
< div class = "explore-more text text-center"
2024-03-08 11:57:12 +00:00
onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
Explore More ⇩
< / div >
{% endblock hero %}
{% block head %}
2024-03-23 04:41:29 +00:00
< link rel = "stylesheet" href = "{{ get_url(path=" home . css " ) } } ? v = 2" >
2024-03-10 04:31:33 +00:00
< 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 %}
2024-03-10 05:30:18 +00:00
{% block metadata %}
< meta property = "og:url" content = "{{ section.permalink }}" / >
< meta property = "og:title" content = "{{ section.title }}" / >
< meta property = "og:description" content = "{{ section.description | default(value=" " ) | striptags } } " / >
< meta property = "og:type" content = "website" / >
< meta property = "og:locale" content = "en_AU" / >
< meta property = "og:image" content = "{{ get_url(path=" screenshot . png " ) } } " / >
< meta name = "twitter:card" content = "summary" / >
< meta name = "twitter:creator" content = "{{ config.extra.twitter_name }}" / >
{% endblock %}
2024-03-10 04:31:33 +00:00
{% block fonts %}
{% endblock %}
{% block favicon %}
< link rel = "icon" href = "{{ get_url(path=" feed-icon . svg " ) } } " >
2024-03-08 11:57:12 +00:00
{% endblock %}
2024-03-10 04:31:33 +00:00
{% block content %}
< div id = "features" class = "heading-text" > Overview< / div >
{{ section.content | safe }}
{% endblock content %}
2024-03-08 11:57:12 +00:00
{% block footer %}
< footer >
< small class = "subtext" >
2024-03-10 04:31:33 +00:00
Copyright © {#2024 – #} {{ now() | date(format="%Y") }}
< a href = "{{ config.extra.homepage }}" > {{ config.extra.author }}< / a >
2024-03-10 05:09:20 +00:00
⬩ < a href = "https://forge.wezm.net/wezm/rsspls.7bit.org" > Website Source< / a >
⬩ < a href = "https://github.com/sponsors/wezm" > Sponsor on GitHub< / a >
2024-03-08 11:57:12 +00:00
< / small >
< / footer >
2024-03-10 04:31:33 +00:00
< script src = "{{ get_url(path=" home . js " ) } } " type = "text/javascript" > < / script >
2024-03-10 05:04:03 +00:00
< script data-goatcounter = "https://rsspls.goatcounter.com/count" async src = "//gc.zgo.at/count.js" > < / script >
2024-03-08 11:57:12 +00:00
{% endblock %}