Image page
This commit is contained in:
parent
c263e6a8e4
commit
cddc6956aa
@ -3,4 +3,4 @@ layout: photo
|
|||||||
title: "Snow Day in Space"
|
title: "Snow Day in Space"
|
||||||
date: 2022-01-18
|
date: 2022-01-18
|
||||||
file: 2022-01-18-snow-day-in-space.jpg
|
file: 2022-01-18-snow-day-in-space.jpg
|
||||||
---
|
---
|
||||||
|
@ -7,19 +7,21 @@
|
|||||||
<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>{% if page.override_title %}{{page.override_title}}{% else %}{{page.title}} | {{site.title}}{% endif %}
|
<title>
|
||||||
|
{% if page.override_title %}{{page.override_title}}{% else %}{{page.title}} | {{site.title}}{% endif %}
|
||||||
</title>
|
</title>
|
||||||
|
<link rel="stylesheet" href="/assets/css/default_compiled.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</main>
|
</main>
|
||||||
<hr>
|
|
||||||
<footer>
|
<footer>
|
||||||
|
<hr>
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2017 - {{ site.time | date: '%Y' }}
|
Copyright © 2017 - {{ site.time | date: '%Y' }}
|
||||||
<strong>
|
<strong>
|
||||||
|
@ -8,14 +8,18 @@
|
|||||||
<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>"{{page.title}}" by {{site.title}}</title>
|
<title>"{{page.title}}" by {{site.title}}</title>
|
||||||
|
<link rel="stylesheet" href="/assets/css/photo_compiled.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<img src="/assets/photography/{{ page.file }}" alt="A photo titled: {{ page.title }}" style="width: 100%;">
|
<img src="/assets/photography/{{ page.file }}" alt="A photo titled: {{ page.title }}" style="width: 100%;">
|
||||||
<div style="display: flex; justify-content: space-between;">
|
<div class="description">
|
||||||
<span>{{ page.title }}</span>
|
<h1>{{ page.title }}</h1>
|
||||||
<span>{{ page.date | date: "%Y-%m-%d" }}</span>
|
<span id="date">Shot {{ page.date | date: "%Y-%m-%d" }} by <a href="/">Evan Pratten</a></span>
|
||||||
|
<p>
|
||||||
|
{{ content }}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
28
src/_sass/default.scss
Normal file
28
src/_sass/default.scss
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// Fonts
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
|
||||||
|
|
||||||
|
body {
|
||||||
|
// Keep websites thin!
|
||||||
|
max-width: 800px;
|
||||||
|
margin: auto;
|
||||||
|
|
||||||
|
// Default font
|
||||||
|
font-family: "Overlock", sans-serif;
|
||||||
|
|
||||||
|
// Default background color
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
|
||||||
|
header {
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
img {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
56
src/_sass/photo.scss
Normal file
56
src/_sass/photo.scss
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
width: 100vw;
|
||||||
|
min-height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
font-family: "Overlock", sans-serif;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap-reverse;
|
||||||
|
|
||||||
|
&>*{
|
||||||
|
margin: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 800px;
|
||||||
|
border: 5px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.description {
|
||||||
|
|
||||||
|
@media screen and (min-width: 1300px) {
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 1300px) {
|
||||||
|
max-width: 800px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-family: "IBM Plex Serif", serif;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
span#date {
|
||||||
|
color: gray;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
4
src/assets/css/default_compiled.scss
Normal file
4
src/assets/css/default_compiled.scss
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
|
||||||
|
@use "default";
|
4
src/assets/css/photo_compiled.scss
Normal file
4
src/assets/css/photo_compiled.scss
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
|
||||||
|
@use "photo";
|
Loading…
x
Reference in New Issue
Block a user