M tailwind.config.js => tailwind.config.js +3 -1
@@ 11,8 11,10 @@ module.exports = {
},
colors: {
/* https://tailwindcss.com/docs/customizing-colors#disabling-a-default-color */
- 'orange': colors.orange,
+ 'amber': colors.amber,
'emerald': colors.emerald,
+ 'orange': colors.orange,
+ 'sky': colors.sky,
'text': {
orig: 'hsl(200, 60%, 1%)',
50: 'hsl(200, 60%, 95%)',
M templates/index.html => templates/index.html +7 -0
@@ 27,6 27,13 @@
If you'd like to know more about me, head over to
<a class="text-secondary-500 font-semibold hover:underline" rel="noopener" target="_blank" href="https://liljamo.com">liljamo.com</a>
</p>
+ <p class="text-sm">
+ This page uses
+ <a data-umami-event="privacy-umami.is" class="font-semibold hover:underline text-sky-400" href="https://umami.is" target="_blank">umami</a>
+ for analytics, and they are available publicly
+ <a data-umami-event="privacy-share" class="font-semibold text-amber-400 hover:underline"
+ href="https://umami.liljamo.dev/share/PYobxQHOgCy1sS2y/liljamo.dev" target="_blank">here</a>.
+ </p>
</div>
</div>
{% endblock content %}
M templates/layouts/base.html => templates/layouts/base.html +3 -1
@@ 19,7 19,9 @@
<link rel="stylesheet" href="/css/style.css"/>
- <script defer src="https://umami.liljamo.dev/script.js" data-website-id="d47d72b2-d20b-42d0-bfa9-e3e6133ccbb5"></script>
+ <script defer src="https://umami.liljamo.dev/script.js"
+ data-website-id="d47d72b2-d20b-42d0-bfa9-e3e6133ccbb5"
+ data-domains="liljamo.dev"></script>
{% block extra_head %} {% endblock %}
</head>