This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).
wget 'https://lists2.roe3.org/FreshRSS/p/themes/.gitignore'
xTheme-*
wget 'https://lists2.roe3.org/FreshRSS/p/themes/.htaccess'
<IfModule mod_mime.c>
AddType font/woff .woff
AddType font/woff2 .woff2
AddCharset UTF-8 .css
AddCharset UTF-8 .svg
</IfModule>
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType application/json "access plus 1 month"
ExpiresByType font/woff "access plus 1 month"
ExpiresByType font/woff2 "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
</IfModule>
<IfModule mod_headers.c>
<FilesMatch "\.svg$">
Header set Content-Security-Policy "default-src 'self'; style-src 'self' 'unsafe-inline'"
</FilesMatch>
</IfModule>
wget 'https://lists2.roe3.org/FreshRSS/p/themes/index.html'
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Refresh" content="0; url=/" />
<title>Redirection</title>
<meta name="robots" content="noindex" />
</head>
<body>
<p><a href="/">Redirection</a></p>
</body>
</html>
wget 'https://lists2.roe3.org/FreshRSS/p/themes/manifest.json'
{
"name": "FreshRSS feed aggregator",
"short_name": "FreshRSS",
"start_url": "../i/",
"scope": "../",
"icons": [
{
"src": "icons/favicon.svg",
"type": "image/svg+xml",
"sizes": "150x150",
"purpose": "any"
},
{
"src": "icons/favicon-96-padding.png",
"type": "image/png",
"sizes": "96x96",
"purpose": "maskable"
},
{
"src": "icons/favicon-512-padding.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
],
"categories": ["news"],
"display": "standalone",
"description": "FreshRSS is a self-hosted RSS feed aggregator."
}
wget 'https://lists2.roe3.org/FreshRSS/p/themes/p.css'
@charset "UTF-8";
body {
font-family: sans-serif;
text-align: center;
}
h1 {
font-size: xx-large;
text-shadow: 1px -1px 0 #ccc;
}
h1 a {
color: #0062be;
text-decoration: none;
}
img {
border: 0;
}
wget 'https://lists2.roe3.org/FreshRSS/p/themes/p.rtl.css'
@charset "UTF-8";
body {
font-family: sans-serif;
text-align: center;
}
h1 {
font-size: xx-large;
text-shadow: -1px -1px 0 #ccc;
}
h1 a {
color: #0062be;
text-decoration: none;
}
img {
border: 0;
}