1
0
mirror of https://github.com/helenclx/leilukin-site.git synced 2025-03-15 06:07:13 +00:00

13 lines
521 B
Plaintext
Raw Normal View History

2024-04-20 15:01:51 +08:00
{%- macro modEntry(params) -%}
2024-04-20 15:11:39 +08:00
### {{ params.title }}
2024-04-20 15:01:51 +08:00
<div class="mod-entry">
<img src="/assets/projects/{{ params.bannerFile }}" alt="Banner of {{ params.title }} mod">
<p>{{ params.desc }}</p>
2024-04-20 15:11:39 +08:00
<h4>Download the mod:</h4>
2024-04-20 15:01:51 +08:00
<div class="mod-entry__downloads">
{%- for download in params.downloads -%}
<a class="link-btn" href="{{ download.url }}" target="_blank">{{ download.site }}</a>
{%- endfor -%}
</div>
</div>
{%- endmacro -%}