feat: server setup intro blog

This commit is contained in:
coolnsx
2025-06-14 23:23:13 +05:30
parent e30c6f16b2
commit e1489b47c3
7 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{%- set usd_rate = 0.012 -%}
{%- set eur_rate = 0.010 -%}
{%- set amount_in_usd = amount * usd_rate -%}
{%- set amount_in_eur = amount * eur_rate -%}
₹{{ amount }} (${{ amount_in_usd | round }} or €{{ amount_in_eur | round }})

View File

@@ -0,0 +1,10 @@
<div class="flex justify-center my-4">
<img
src="{{ get_url(path=url) | safe }}"
alt="{{ page.title }}"
class="max-w-full max-h-100 object-cover border border-gray-600 rounded-2xl"
loading="lazy"
decoding="async"
onclick="openFullscreenImage(this)"
/>
</div>