add dev server
This commit is contained in:
3
src/templates/footer-template.hbs
Normal file
3
src/templates/footer-template.hbs
Normal file
@@ -0,0 +1,3 @@
|
||||
<footer>
|
||||
<p>© {{{footer.copyright}}} {{currentYear}}</p>
|
||||
</footer>
|
||||
6
src/templates/header-template.hbs
Normal file
6
src/templates/header-template.hbs
Normal file
@@ -0,0 +1,6 @@
|
||||
<header>
|
||||
<h1>{{header.title}}</h1>
|
||||
{{#if header.subtitle}}
|
||||
<h2>{{header.subtitle}}</h2>
|
||||
{{/if}}
|
||||
</header>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user