Re-add syntax highlighting to daily emails and

...ATDC lessons
This commit is contained in:
Oliver Davies 2024-02-18 01:35:59 +00:00
parent 0d9bb37503
commit 5fbf48d9ac
48 changed files with 186 additions and 165 deletions

View file

@ -37,8 +37,12 @@
<meta property="twitter:title" content="{{ page.title }} | {{ site.name }}" />
{% endif %}
{% endblock %}
{% block styles %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block scripts %}{% endblock %}
</body>
</html>

View file

@ -3,3 +3,20 @@
{% block content_bottom %}
{% include 'about-me.html.twig' %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/styles/github-dark.min.css">
<style type="text/css">
.hljs {
background: transparent;
}
</style>
{% endblock %}
{% block scripts %}
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/highlight.min.js"></script>
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/languages/php.min.js"></script>
<script>hljs.highlightAll();</script>
{% endblock %}