59 lines
2.1 KiB
HTML
59 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ lang }}">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="profile">
|
|
<img src="{{ avatar }}" alt="Profile Picture" class="profile-pic" />
|
|
<h1 class="name">{{ name }}</h1>
|
|
<p class="description">{{ tagline }}</p>
|
|
</div>
|
|
|
|
<div class="links">
|
|
{% for item in links %}
|
|
{% assign link = item.link %}
|
|
<a href="{{ link.url }}" target="{{ link.target }}" class="link-button" alt="{{ link.alt }}" title="{{ link.title }}">
|
|
<i class="{{ link.icon }}"></i> {{ link.text }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="button-container">
|
|
<div class="button-group">
|
|
{% for item in socials %}
|
|
{% assign social = item.social %}
|
|
<a href="{{ social.url }}" title="{{ social.title }}" target="{{ social.target }}" class="icon-button" alt="{{ social.alt }}">
|
|
<i class="{{ social.icon }}"></i>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="zhgchgli" data-color="#FFDD00" data-emoji="🍺" data-font="Cookie" data-text="Buy me a beer" data-outline-color="#000000" data-font-color="#000000" data-coffee-color="#ffffff" ></script>
|
|
{{ footer }}
|
|
|
|
<div class="copyright">{{ copyright }}</div>
|
|
</footer>
|
|
</div>
|
|
<script src="fontawesome/js/all.js" data-auto-replace-svg="nest"></script>
|
|
{% if google_analytics_id %}
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S7G4LWWHH8"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-S7G4LWWHH8');
|
|
</script>
|
|
{% endif %}
|
|
<script src="./scripts.js"></script>
|
|
</body>
|
|
</html>
|