rssguard/resources/skins/plain/html_wrapper.html
2021-09-21 08:33:38 +02:00

86 lines
2.8 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<!--
This is the main layout file for article viewer.
This file is processed in runtime with article which
should be displayed.
%1, %2, ..., %N placeholders are used throught all files and are replaced
with various article's properties when needed.
Here is overview of all placeholders used throughtout the skin:
Common placeholders:
%data% - is replaced by current absolute path to user data folder.
html_wrapper.html:
%1 - Title of the article.
%2 - Body of the preview which is composed from:
- single html_single_message.html (single article preview),
- multiple html_single_message.html (newspaper mode).
html_single_message.html:
%1 - Title of the article.
%2 - "Written by" text.
%3 - URL of the article.
%4 - Body of the article.
%5 - Date/time of the article.
%6 - Attachments (composed from html_enclosure_every.html).
%7 - Attached pictures (composed from html_enclosure_image.html).
html_adblocked.html:
%1 - Title of the page. This page is used when the website is entirely blocked by AdBlock.
%2 - Description of what and why was blocked.
html_enclosure_every.html:
%1 - URL of the attached media file.
%2 - Attachment symbol.
%3 - MIME type of the attachment.
html_enclosure_image.html:
%1 - URL of the attached picture file.
%2 - MIME type of the picture.
%3 - height of the picture thumbnail to be displayed which is loaded from application settings.
-->
<head>
<!-- Place your custom skin-wide CSS styles here. -->
<style>
</style>
<!-- This resets key font sizes, so that font size can be changed in RSS Guard. -->
<style>
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
font-size: 100%;
font: inherit;
}
html {
height: 100%;
}
body {
height: 100%;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>%1</title>
</head>
<body>
%2
</body>
</html>