xesite/templates/mara.rs.html

21 lines
775 B
HTML
Raw Normal View History

2020-09-18 21:19:14 +00:00
@(mood: &str, character: &str, message: Html<String>)
2020-09-18 20:28:31 +00:00
<div class="grid conversation">
<div class="cell -2of12">
<div class="content">
<picture>
<source srcset="https://cdn.christine.website/file/christine-static/stickers/@character.to_lowercase()/@(mood).webp" height="75%" width="75%" type="image/webp">
2020-09-18 20:36:22 +00:00
<img src="https://cdn.christine.website/file/christine-static/stickers/@character.to_lowercase()/@(mood).png" height="75%" width="75%" alt="@character is @mood">
2020-09-18 20:28:31 +00:00
</picture>
</div>
</div>
<div class="cell -10of12">
2020-09-19 11:14:19 +00:00
<div class="content">
<p>
<b>@character</b>
<br>
</p>
@message
</div>
2020-09-18 20:28:31 +00:00
</div>
</div>