Compare commits

..

14 commits

Author SHA1 Message Date
Christian Hesse
c63826c99f doc/mod/scriptrunonce: get script from rsc.eworm.de 2025-11-12 00:25:18 +01:00
Christian Hesse
046c3811af INITIAL-COMMANDS: install from rsc.eworm.de 2025-11-12 00:23:37 +01:00
Christian Hesse
543c4424e7 README: install from rsc.eworm.de 2025-11-12 00:23:02 +01:00
Christian Hesse
e2fea6eb1e contrib/Makefile: hide the hint on broken site 2025-11-12 00:11:16 +01:00
Christian Hesse
515edeaf44 contrib/notification: hint on possibly broken site 2025-11-12 00:11:16 +01:00
Christian Hesse
25e6780f2a contrib/logo-color: hint on possibly broken site 2025-11-12 00:11:16 +01:00
Christian Hesse
f273392d7d contrib/html: hide the hint on broken link 2025-11-12 00:01:55 +01:00
Christian Hesse
6be669632b doc/mod/notification-telegram: hint on possibly broken link 2025-11-11 23:59:56 +01:00
Christian Hesse
3b94878e0d README: add a sub-section for code hosting 2025-11-11 23:59:56 +01:00
Christian Hesse
e938ea8f0b README: add the url verbatim 2025-11-11 23:59:56 +01:00
Christian Hesse
9b34f60b89 general/style: make the blockquote darker 2025-11-11 23:59:56 +01:00
Christian Hesse
a94c72493a contrib/notification: add a head with eworm, QR code and caption 2025-11-11 23:59:56 +01:00
Christian Hesse
64b651b6d7 contrib/logo-color: add a head with eworm, QR code and caption 2025-11-11 23:59:56 +01:00
Christian Hesse
c9da2423aa contrib/html: add a head with eworm, QR code and caption 2025-11-11 23:59:56 +01:00
4 changed files with 36 additions and 28 deletions

View file

@ -4,12 +4,14 @@
<link rel="stylesheet" type="text/css" href="__STYLE__"> <link rel="stylesheet" type="text/css" href="__STYLE__">
<link rel="icon" type="image/png" href="__LOGO__"> <link rel="icon" type="image/png" href="__LOGO__">
</head><body> </head><body>
<table>
<table><tr> <tr>
<td><img src="__EWORM__" alt="eworm on meadow" /></td> <td rowspan=2><img src="__EWORM__" alt="eworm on meadow" /></td>
<td><img src="__QR_CODE__" alt="QR code: rsc.eworm.de" /></td> <td rowspan=2><img src="__QR_CODE__" alt="QR code: rsc.eworm.de" /></td>
<td class="head"><span class="top">RouterOS Scripts</span><br /> <td class="head-top">RouterOS Scripts</td>
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td> </tr>
</tr></table> <tr>
<td class="head-bottom">a collection of scripts for MikroTik RouterOS</td>
</tr>
</table>
<hr /> <hr />

View file

@ -5,13 +5,16 @@
<link rel="icon" type="image/png" href="../logo.png"> <link rel="icon" type="image/png" href="../logo.png">
<script src="logo-color.d/script.js"></script> <script src="logo-color.d/script.js"></script>
</head><body> </head><body>
<table>
<table><tr> <tr>
<td><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td> <td rowspan=2><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
<td><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td> <td rowspan=2><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td>
<td class="head"><span class="top">RouterOS Scripts</span><br /> <td class="head-top">RouterOS Scripts</td>
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td> </tr>
</tr></table> <tr>
<td class="head-bottom">a collection of scripts for MikroTik RouterOS</td>
</tr>
</table>
<hr /> <hr />
<h1>Logo Color Changer</h1> <h1>Logo Color Changer</h1>

View file

@ -5,13 +5,16 @@
<link rel="icon" type="image/png" href="../logo.png"> <link rel="icon" type="image/png" href="../logo.png">
<script src="notification.d/script.js"></script> <script src="notification.d/script.js"></script>
</head><body> </head><body>
<table>
<table><tr> <tr>
<td><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td> <td rowspan=2><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
<td><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td> <td rowspan=2><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td>
<td class="head"><span class="top">RouterOS Scripts</span><br /> <td class="head-top">RouterOS Scripts</td>
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td> </tr>
</tr></table> <tr>
<td class="head-bottom">a collection of scripts for MikroTik RouterOS</td>
</tr>
</table>
<hr /> <hr />
<h1>Notification Generator</h1> <h1>Notification Generator</h1>

View file

@ -68,15 +68,15 @@ pre code {
span.link { span.link {
color: #863600; color: #863600;
} }
td.head { td.head-top {
line-height: 1.2; height: 48px;
padding: 0 2em; vertical-align: bottom;
}
td.head .top {
font-size: 250%; font-size: 250%;
font-weight: bold; font-weight: bold;
} }
td.head .bottom { td.head-bottom {
height: 48px;
vertical-align: top;
font-size: 125%; font-size: 125%;
color: #555; color: #555;
} }