mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
feat(11ty): load styles
This commit is contained in:
parent
83cd4b596e
commit
125dfa5933
@ -2,10 +2,22 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0"
|
||||||
|
>
|
||||||
|
|
||||||
<title>{{ renderData.title or title or metadata.title }}</title>
|
<title>{{ renderData.title or title or metadata.title }}</title>
|
||||||
<meta name="Description" content="{{ renderData.description or description or metadata.description }}">
|
<meta
|
||||||
<link rel="stylesheet" href="{{ '/css/index.css' | url }}">
|
name="description"
|
||||||
|
content="{{ renderData.description or description or metadata.description }}"
|
||||||
|
>
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="{{ 'assets/css/base.css' | url }}"
|
||||||
|
>
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
{{ content | safe }}
|
{{ content | safe }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user