fork and modify dockerfile for prod
This commit is contained in:
9
_includes/analytics.html
Normal file
9
_includes/analytics.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<!-- Google tag (gtag.js) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9HEJ7S2Z7V"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-9HEJ7S2Z7V');
|
||||
</script>
|
||||
18
_includes/links.html
Normal file
18
_includes/links.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% for link in site.links %}
|
||||
|
||||
{% if link.URL %}
|
||||
|
||||
<a class="flex" {% if link.Name == "Mastodon" %}rel="me"{% endif %} href="{{link.URL}}{% if link.Username %}/{{link.Username}}{% endif %}" target="_blank"
|
||||
rel="noopener noreferrer">
|
||||
<button id="links"
|
||||
class="links lg:m-5 md:5 sm:3.5 text-white hover:opacity-75 font-semibold my-2.5 mx-5 px-5 py-1.5 rounded-md w-full place-content-center h-14 w-32"
|
||||
style="{% if link.Color %}background-color: {{link.Color}};-webkit-box-shadow: 0px 10px 25px 0px {{link.Color}}80;-moz-box-shadow: 0px 10px 25px 0px {{link.Color}}80;box-shadow: 0px 10px 25px 0px {{link.Color}}80;{% else %}color: white; border: 0.10rem solid #ffffff; -webkit-box-shadow: 0px 10px 25px 0px #ffffff80;-moz-box-shadow: 0px 10px 25px 0px #ffffff80;box-shadow: 0px 10px 25px 0px #ffffff80;{% endif %}">
|
||||
<span id="link-content" {% if link.Text_Color %}style="color: {{link.Text_Color}};"{% endif %}>
|
||||
<i class="{{link.Icon-Class}} align-middle"></i><span class="mx-1.5 align-middle">{{link.Name}}</span>
|
||||
</span>
|
||||
</button>
|
||||
</a>
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
10
_includes/meta.html
Normal file
10
_includes/meta.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!-- Include Meta Tags Here -->
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1 user-scalable=no, shrink-to-fit=no">
|
||||
<meta content='#000000' name='theme-color'/>
|
||||
<title>{{site.name}} | Links</title>
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url}}">
|
||||
<script src="https://kit.fontawesome.com/609f7f6148.js" crossorigin="anonymous"></script>
|
||||
Reference in New Issue
Block a user