Compare commits
3 Commits
8768cbae42
...
f73377396d
Author | SHA1 | Date | |
---|---|---|---|
f73377396d | |||
19d17598c7 | |||
6851af664e |
@ -1,5 +1,6 @@
|
||||
# The URL the site will be built for
|
||||
base_url = "https://nom.fey.ink"
|
||||
title = "nom"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
@ -17,4 +18,4 @@ taxonimies = [
|
||||
highlight_code = false
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
# Put all your custom variables here
|
3
content/_index.md
Normal file
3
content/_index.md
Normal file
@ -0,0 +1,3 @@
|
||||
+++
|
||||
title = "fey's cookbook"
|
||||
+++
|
@ -1,3 +1,4 @@
|
||||
+++
|
||||
title = "recipes"
|
||||
description = "everything I cook"
|
||||
+++
|
@ -54,9 +54,11 @@ ol li {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
ul li {
|
||||
margin-left: 2rem;
|
||||
text-indent: -2rem;
|
||||
ul {
|
||||
li {
|
||||
margin-left: 2rem;
|
||||
text-indent: -2rem;
|
||||
}
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@ -96,7 +98,7 @@ ul li {
|
||||
column-fill: auto;
|
||||
max-height: 100%;
|
||||
}
|
||||
@media (min-width: 56rem) and (max-width: 1080px) {
|
||||
@media (min-width: 56rem) and (min-width: 800px) and (max-width: 1080px) {
|
||||
column-count: 2;
|
||||
column-fill: balance;
|
||||
max-height: 100%;
|
||||
|
@ -1 +1 @@
|
||||
$font-size: 16pt;
|
||||
$font-size: 1.25em;
|
@ -1,6 +1,24 @@
|
||||
{% if section %}
|
||||
{% set meta = section %}
|
||||
{% else %}
|
||||
{% if page %}
|
||||
{% set meta = page %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ meta.title }}</title>
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site" content="{%if config.title %}{{ config.title }}{% else %}{{ config.base_url }}{% endif %}">
|
||||
<meta property="og:url" content="{{ get_url(path=meta.path) }}">
|
||||
<meta property="og:title" content="{{ meta.title }}">
|
||||
{% if meta.description -%}
|
||||
<meta property="og:description" content="{{ meta.description }}">
|
||||
{%- endif %}
|
||||
{% if meta.extra.thumbnail -%}#
|
||||
<meta property="og:image" content="{{ get_url(path=meta.extra.thumbnail) }}">
|
||||
{%- endif %}
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
Loading…
Reference in New Issue
Block a user