1

Image page

This commit is contained in:
Evan Pratten 2024-11-26 16:44:10 -05:00
parent c263e6a8e4
commit cddc6956aa
7 changed files with 105 additions and 7 deletions

View File

@ -3,4 +3,4 @@ layout: photo
title: "Snow Day in Space"
date: 2022-01-18
file: 2022-01-18-snow-day-in-space.jpg
---
---

View File

@ -7,19 +7,21 @@
<head>
<meta charset="UTF-8">
<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>
<link rel="stylesheet" href="/assets/css/default_compiled.css">
</head>
<body>
<header>
</header>
<main>
{{ content }}
</main>
<hr>
<footer>
<hr>
<p>
Copyright &copy; 2017 - {{ site.time | date: '%Y' }}
<strong>

View File

@ -8,14 +8,18 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>"{{page.title}}" by {{site.title}}</title>
<link rel="stylesheet" href="/assets/css/photo_compiled.css">
</head>
<body>
<main>
<img src="/assets/photography/{{ page.file }}" alt="A photo titled: {{ page.title }}" style="width: 100%;">
<div style="display: flex; justify-content: space-between;">
<span>{{ page.title }}</span>
<span>{{ page.date | date: "%Y-%m-%d" }}</span>
<div class="description">
<h1>{{ page.title }}</h1>
<span id="date">Shot {{ page.date | date: "%Y-%m-%d" }} by <a href="/">Evan Pratten</a></span>
<p>
{{ content }}
</p>
</div>
</main>
</body>

28
src/_sass/default.scss Normal file
View 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
View 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;
}
}
}
}
}

View File

@ -0,0 +1,4 @@
---
---
@use "default";

View File

@ -0,0 +1,4 @@
---
---
@use "photo";