s1llyw0rdz/web/handler/html/current_status.html

70 lines
2.1 KiB
HTML
Raw Permalink Normal View History

2021-11-28 21:38:08 +00:00
{{ define "content" }}
2021-11-30 20:50:10 +00:00
<style>
2025-11-20 00:12:26 +00:00
#sillywordz {
2021-11-30 20:50:10 +00:00
padding: .5em;
2021-12-04 15:22:30 +00:00
background-color: azure;
border: 1px solid midnightblue;
2021-11-30 20:50:10 +00:00
}
2021-12-04 15:22:30 +00:00
2025-11-20 00:12:26 +00:00
#sillywordz-username {
2021-11-30 20:50:10 +00:00
margin-bottom: .5em;
}
2021-12-04 15:22:30 +00:00
2025-11-20 00:12:26 +00:00
#sillywordz-content {
2021-11-30 20:50:10 +00:00
margin: 0 1em 0.5em 1em;
}
2021-12-04 15:22:30 +00:00
@media (min-width: 650px) {
.cols {
grid-template-columns: 1fr 1fr;
grid-gap: 2em;
}
}
2021-11-30 20:50:10 +00:00
</style>
2021-12-04 15:22:30 +00:00
2021-11-28 21:38:08 +00:00
<div class="cols">
2021-12-04 15:22:30 +00:00
<div>
2025-11-20 00:12:26 +00:00
<h1>Sillywordz widget</h1>
2021-11-28 21:38:08 +00:00
<form method="get" action="/current-status">
<table>
<tr>
<td>name:</td>
<td><input type="text" name="name" id="name" value="{{ .name }}"/></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="create HTML"/></td>
</tr>
</table>
</form>
2025-11-20 04:47:10 +00:00
<p>Paste this code into your HTML file:</p>
2025-11-21 08:35:22 +00:00
<textarea style="width: 100%; max-width: 500px; height: 75px;"><div id="sillywordz"><div id="sillywordz-username"></div><div id="sillywordz-number"></div><div id="sillywordz-content"></div></div><script src="https://sillywordz.kissing.computer/current-status.js?name={{ .name }}"></script></textarea>
2025-11-20 04:47:10 +00:00
<p>Paste this code into your CSS file:</p>
2025-11-20 00:12:26 +00:00
<textarea style="width: 100%; max-width: 500px; height: 175px;">#sillywordz {
2021-11-30 20:50:10 +00:00
padding: .5em;
2021-12-04 15:22:30 +00:00
background-color: azure;
border: 1px solid midnightblue;
2021-11-30 20:50:10 +00:00
}
2025-11-20 04:47:10 +00:00
#sillywordz-number {
margin-bottom: 1.2em;
}
2025-11-20 00:12:26 +00:00
#sillywordz-username {
2021-11-30 20:50:10 +00:00
margin-bottom: .5em;
}
2025-11-20 00:12:26 +00:00
#sillywordz-content {
2021-11-30 20:50:10 +00:00
margin: 0 1em 0.5em 1em;
2021-12-04 15:22:30 +00:00
}</textarea>
2021-11-30 20:50:10 +00:00
<p>Make it your own! The CSS above is only an example. Tweak it so that it integrates well with your sites's colors.</p>
2021-12-04 15:22:30 +00:00
</div>
<div>
2021-11-28 21:38:08 +00:00
<h2>Preview</h2>
{{ if .name }}
2025-11-20 00:12:26 +00:00
<script src="https://sillywordz.kissing.computer/current-status.js?name={{ .name }}"></script>
2021-11-28 21:38:08 +00:00
{{ else }}
<p>Add your name and click "generate HTML" to see a preview.</p>
{{ end }}
2021-12-04 15:22:30 +00:00
</div>
2021-11-28 21:38:08 +00:00
</div>
2021-12-04 15:22:30 +00:00
{{ end }}