html
head
title='Urushi Counter'
meta(name='viewport' content='width=device-width, initial-scale=1')
link(rel='icon' type='image/png' href='favicon.png')
link(rel='stylesheet' href='https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/light.min.css')
body
.tool
code #{site}/get/@
input#name(type='text' placeholder=':handle' style='display: inline-block; width: 80px; height: 1.57em; line-height: 1.57em; margin: 0 4px; vertical-align: middle;')
code ?theme=
select#theme(style='display: inline-block; height: 1.79em; line-height: 1.79em; font-size: 14px; margin: 0 4px; padding: 0 4px; vertical-align: middle;')
option(value='urushi') urushi
option(value='asoul') asoul
option(value='moebooru') moebooru
option(value='moebooru-h') moebooru-h
option(value='rule34') rule34
option(value='gelbooru') gelbooru
option(value='gelbooru-h') gelbooru-h
button#get Generate
img#result(style='display: block;')
script.
document.getElementById('get').addEventListener('click', () => {
const name = document.getElementById('name');
const text = name.value ? name.value.trim() : '';
const theme = document.getElementById('theme').value || 'moebooru';
if (!text) {
alert('Enter a valid counter handle to continue.');
return
}
document.getElementById('result').src = `#{site}/get/@${text}?theme=${theme}`;
})
h2 Usage
p Replace :example with your counter's handle.
h5 HTML
code <img src="#{site}/get/@:example" alt=":example" />
h5 Markdown
code 
br
br
h2 Example
p #{site}/get/@index?theme=urushi
p
details
summary(style='display: inline-block;')
h3(style='display: inline-block; cursor: pointer; margin-bottom: 0;') More Examples (Click to Expand)
h3
a(href='https://space.bilibili.com/703007996' target="_blank") A-SOUL
h3
a(href='https://github.com/moebooru/moebooru' target="_blank") Moebooru
h3
a(href='https://github.com/moebooru/moebooru' target="_blank") Moebooru (Hentai)
h3
a(href='https://rule34.xxx/' target="_blank") Rule 34 (NSFW)
h3
a(href='https://gelbooru.com/' target="_blank") Gelbooru (NSFW)
h3
a(href='https://gelbooru.com/' target="_blank") Gelbooru (Hentai)