abisu/views/index.hbs
2020-09-06 22:51:20 +02:00

41 lines
No EOL
1.1 KiB
Handlebars

<div id="main">
<svg class="large shape" viewBox="40 50 100 35">
<defs>
<linearGradient id="circleGradient" x1="10%" x2="100%" y1="70%" y2="10%">
<stop stop-color="#ffd1dc" offset="0%"/>
{{!-- <stop stop-color="#2a2c41" offset="30%"/> --}}
<stop stop-color="#0D0D0C" offset="80%"/>
</linearGradient>
</defs>
<circle cx="90" cy="55" r="5" fill-rule="evenodd" stroke-linecap="square" fill="url(#circleGradient)"/>
<circle cx="120" cy="50" r="28" fill-rule="evenodd" stroke-linecap="square" fill="url(#circleGradient)"/>
<circle cx="100" cy="70" r="15" fill-rule="evenodd" stroke-linecap="square" fill="url(#circleGradient)"/>
</svg>
<section class="socials">
<h1 class="name"> {{name}}</h1>
<br>
<br>
<div class="links">
{{#each social}}
<div id="{{name}}">
<a href="https://{{link}}">
{{#each character}}
<span>
{{this}}
</span>
{{/each}}
</a>
</div>
{{/each}}
</div>
</section>
</div>
<div class="creator">
<p>
<a href="https://werewolf.computer">lio</a>
</p>
</div>