add dev server

This commit is contained in:
2024-01-02 17:38:05 +01:00
parent 51afb63f1d
commit 166c3cf0e8
9 changed files with 1347 additions and 18 deletions

View File

@@ -0,0 +1,3 @@
<footer>
<p>&copy; {{{footer.copyright}}} {{currentYear}}</p>
</footer>

View File

@@ -0,0 +1,6 @@
<header>
<h1>{{header.title}}</h1>
{{#if header.subtitle}}
<h2>{{header.subtitle}}</h2>
{{/if}}
</header>

View File

@@ -1,6 +1,12 @@
{{#each socialLinks}}
<div class="social-link">
<h2>{{name}}</h2>
<a href="{{url}}" target="_blank">Visit {{name}}</a>
</div>
{{/each}}
<div class="link-grid">
{{#each socialLinks}}
<div class="link" style="background-color: {{backgroundColor}}; color: {{textColor}}">
<a href="{{url}}" target="_blank">
{{#if icon}}
<img src="/images/{{icon}}" alt="{{name}} icon" class="link-icon">
{{/if}}
<h2>{{name}}</h2>
</a>
</div>
{{/each}}
</div>