main dots / scripts / Scripts / perl / iconshare_pl / templates / iconshare.tt
xxwhirlpool  ·  2026-07-29
 1<!DOCTYPE html>
 2<html lang="en">
 3<head>
 4	<title>[% title %]</title>
 5
 6	<style>
 7		:root {
 8			--background-color: #eff1f5;
 9			--wrapper-color: #4d536e; /* #303446; */
10		}
11
12		html {
13			background: var(--background-color);
14			display: flex;
15			flex-direction: column;
16			align-items: center;
17		}
18
19		.wrapper {
20			background: var(--wrapper-color);
21			max-width: 26em;
22			padding-block: .5em;
23			padding-inline: .5em;
24		}
25
26		.wrapper img {
27			margin-block: .1em;
28			margin-inline: .1em;
29		}
30	</style>
31</head>
32
33<body>
34
35<main class="wrapper">
36	[% FOREACH icon IN icons %]
37		<img src="[% icon %]" alt="">
38	[% END %]
39</main>
40
41</body>
42
43</html>