overhauled quotes
This commit is contained in:
parent
bad8261c4c
commit
6cd5fdaca5
|
@ -16,14 +16,16 @@
|
|||
<script>
|
||||
const _paq = window._paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
_paq.push(["trackPageView"]);
|
||||
_paq.push(["enableLinkTracking"]);
|
||||
(function () {
|
||||
const u = "https://analytics.24unix.net/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', '1']);
|
||||
_paq.push(["setTrackerUrl", u + "matomo.php"]);
|
||||
_paq.push(["setSiteId", "1"]);
|
||||
const d = document, g = d.createElement("script"), s = d.getElementsByTagName("script")[0];
|
||||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||
g.async = true;
|
||||
g.src = u + "matomo.js";
|
||||
s.parentNode.insertBefore(g, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
|
@ -39,9 +41,12 @@
|
|||
<div class="container-fluid text-center">
|
||||
<div class="row content d-flex justify-content-md-start">
|
||||
<div class="col-sm-2 sidenav-left box text-start" id="main-menu">
|
||||
<i class="fa fa-lg fa-fw fa-file-code-o" aria-hidden="true"></i> <a href="/projects">Projects</a><br>
|
||||
<i class="fa fa-lg fa-fw fa-gitea" aria-hidden="true"></i> <a href="//git.24unix.net" target="_blank">Gitea</a> <i class="fa fa-external-link" aria-hidden="true"></i><br>
|
||||
<i class="fa fa-lg fa-fw fa-nextcloud" aria-hidden="true"></i> <a href="//cloud.24unix.net" target="_blank">NextCloud</a> <i class="fa fa-external-link" aria-hidden="true"></i>
|
||||
<i class="fa fa-lg fa-fw fa-file-code-o" aria-hidden="true"></i> <a href="{{ path('app_projects') }}">Projects</a><br>
|
||||
<i class="fa fa-lg fa-fw fa-gitea" aria-hidden="true"></i> <a href="//git.24unix.net" target="_blank">Gitea</a> <i
|
||||
class="fa fa-external-link" aria-hidden="true"></i><br>
|
||||
<i class="fa fa-lg fa-fw fa-nextcloud" aria-hidden="true"></i> <a href="//cloud.24unix.net"
|
||||
target="_blank">NextCloud</a> <i
|
||||
class="fa fa-external-link" aria-hidden="true"></i>
|
||||
<!-- <a href="//pastebin.24unix.net">pastebin.24unix.net</a>-->
|
||||
</div>
|
||||
<div class="col-sm-9 text-left center-block" id="main-content">
|
||||
|
@ -62,8 +67,10 @@
|
|||
<div class="col">
|
||||
<h1 class="q-title-show">Quote of the Moment</h1>
|
||||
<div class="q-display p-3">
|
||||
<i class="fa fa-quote-left mr-3"></i>
|
||||
<p class="d-inline">{{ quote | markdown_to_html }}</p>
|
||||
{# <i class="fa fa-quote-left"></i> #}
|
||||
<p class="d-inline">
|
||||
{{ quote | markdown_to_html }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue