mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-14 12:47:15 +00:00
13 lines
505 B
Plaintext
13 lines
505 B
Plaintext
{%- macro modEntry(params) -%}
|
|
### {{ params.title }}
|
|
<div class="mod-entry">
|
|
<img src="/assets/projects/{{ params.bannerFile }}" alt="Banner of {{ params.title }} mod">
|
|
<p>{{ params.desc }}</p>
|
|
<h4>Download the mod:</h4>
|
|
<div class="mod-entry__downloads">
|
|
{%- for download in params.downloads -%}
|
|
<a class="link-btn" href="{{ download.url }}">{{ download.site }}</a>
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
{%- endmacro -%} |