mirror of
https://github.com/peter-tanner/code.git
synced 2024-11-30 10:50:16 +08:00
25 lines
441 B
HTML
25 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
|
|
{%- include header.html -%}
|
|
|
|
<main class="page-content" aria-label="Content">
|
|
<div class="wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
|
|
{%- include footer.html -%}
|
|
<script>
|
|
window.FontAwesomeConfig = {
|
|
searchPseudoElements: true
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|