Compare commits

...

2 commits

Author SHA1 Message Date
7fc28a6215
Tweak footer
- Credit Fira Sans
- Use diamond in footer
2024-03-10 15:09:20 +10:00
805d713029
Small tweaks; add GoatCounter
Mostly to make headings work better on mobile.
2024-03-10 15:04:03 +10:00
5 changed files with 18 additions and 10 deletions

View file

@ -35,8 +35,8 @@ You can subscribe to the generated feeds in your feed reader, either by
referring to them locally or by publishing them on a web server.
<div class="text-center">
<a href="/install/" class="link-button">Install</a>
<a href="/documentation/" class="link-button">Documentation</a>
<a href="/install/" class="link-button" style="margin: 0.5em 2em">Install</a>
<a href="/documentation/" class="link-button" style="margin: 0.5em 2em">Documentation</a>
</div>
FAQ
@ -67,8 +67,9 @@ at your option.
Credits
-------
* [RSS feed icon](http://www.feedicons.com/) by The Mozilla Foundation
* Website theme based on [Juice](https://github.com/huhu/juice) by HuHu
* [RSS feed icon](http://www.feedicons.com/) by The Mozilla Foundation.
* Website theme based on [Juice](https://github.com/huhu/juice) by HuHu.
* [Fira Sans](https://github.com/hellogreg/firava) variable font by Mozilla and Greg Gibson.
[selectors]: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors
[ssheven]: https://github.com/cy384/ssheven

View file

@ -6,13 +6,13 @@ date = 2024-03-08T21:30:39+10:00
#updated = 2024-02-20T22:57:15+10:00
+++
The [0.8.1 release has been published][release] and RSS Please now has its own website.
The 0.8.1 release has been published and RSS Please now has its own website.
<!-- more -->
## Version 0.8.1
Many thanks to [Lcchy on GitHub][Lcchy] for these new features:
Many thanks to [Lcchy on GitHub][Lcchy] for these new features in [this release][release]:
* Add per feed user-agent option to config file [#27](https://github.com/wezm/rsspls/pull/27)
* Add a media selector to include as RSS enclosure [#29](https://github.com/wezm/rsspls/pull/29)

View file

@ -21,7 +21,7 @@ a.link-button {
font-size: 13px;
border-radius: 5px;
padding: 2px 2em 0;
margin: 0.5em 2em;
margin: 0.5em 0;
height: 32px;
line-height: 30px;
text-decoration: none;
@ -46,6 +46,7 @@ h1 {
border: none;
margin: 0;
padding: 0;
line-height: 1.2;
}
h3 {
font-size: 18px;
@ -80,6 +81,7 @@ p {
@media screen and (max-width: 950px) {
.hero {
flex-direction: column;
padding-top: 100px;
}
.hero section {
padding: 0 2rem;

View file

@ -11,7 +11,7 @@ if (installButton && version) {
os = "Windows";
arch = "x86_64";
}
else if (agent.indexOf("Mac OS X") >= 0 || agent.indexOf("macOS") >= 0) {
else if (macos(agent)) {
file = "rsspls-"+version+"-universal-apple-darwin.tar.gz";
os = "macOS";
arch = "universal";
@ -36,3 +36,7 @@ if (installButton && version) {
function x64(agent) {
return (agent.indexOf("x86_64") >= 0 || agent.indexOf("amd64") >= 0);
}
function macos(agent) {
return (agent.indexOf("Mac OS X") >= 0 || agent.indexOf("macOS") >= 0) && agent.indexOf("iPhone") < 0;
}

View file

@ -48,9 +48,10 @@
<small class="subtext">
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>
<a href="https://forge.wezm.net/wezm/rsspls.7bit.org">Website Source</a>
<a href="https://github.com/sponsors/wezm">Sponsor on GitHub</a>
</small>
</footer>
<script src="{{ get_url(path="home.js") }}" type="text/javascript"></script>
<script data-goatcounter="https://rsspls.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
{% endblock %}