Photo grid
This commit is contained in:
parent
419570c53b
commit
7ead99f55a
@ -14,6 +14,11 @@
|
|||||||
<link rel="canonical" href="{{ site.url }}{{ page.url | replace: '.html', '' }}" />
|
<link rel="canonical" href="{{ site.url }}{{ page.url | replace: '.html', '' }}" />
|
||||||
<link rel="stylesheet" href="/assets/css/default_compiled.css">
|
<link rel="stylesheet" href="/assets/css/default_compiled.css">
|
||||||
<link rel="stylesheet" href="/assets/css/highlight/vs.css">
|
<link rel="stylesheet" href="/assets/css/highlight/vs.css">
|
||||||
|
{% if page.custom_css %}
|
||||||
|
<!--noformat-->
|
||||||
|
<style>{{ page.custom_css }}</style>
|
||||||
|
<!--noformat-->
|
||||||
|
{% endif %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -61,7 +66,7 @@
|
|||||||
<div class="page-title">
|
<div class="page-title">
|
||||||
<h1>{{ page.title }}</h1>
|
<h1>{{ page.title }}</h1>
|
||||||
{% if page.description %}
|
{% if page.description %}
|
||||||
<span>{{ page.description }}</span>
|
<span>{{ page.description }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -4,6 +4,7 @@ body {
|
|||||||
// Keep websites thin!
|
// Keep websites thin!
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
padding: 0 1em;
|
||||||
|
|
||||||
// Default font
|
// Default font
|
||||||
font-family: $body-font;
|
font-family: $body-font;
|
||||||
@ -113,7 +114,7 @@ body {
|
|||||||
|
|
||||||
p,
|
p,
|
||||||
li {
|
li {
|
||||||
// font-size: 1.25rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
@ -12,7 +12,7 @@ title: Blog
|
|||||||
<ul>
|
<ul>
|
||||||
{% for post in group.items %}
|
{% for post in group.items %}
|
||||||
<li>
|
<li>
|
||||||
<span>{{ post.date | date: "%Y-%m-%d" }}:</span>
|
<span style="color: gray;">{{ post.date | date: "%Y-%m-%d" }}:</span>
|
||||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -1,12 +1,31 @@
|
|||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
title: Photography
|
title: Photography
|
||||||
|
custom_css: |
|
||||||
|
.photo-feed {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.photo-feed-entry {
|
||||||
|
margin: 1em;
|
||||||
|
max-width: calc(max(45%, 300px));
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: calc(((300px + 2em) * 2) + 2em)) {
|
||||||
|
.photo-feed-entry {
|
||||||
|
max-width: calc(100% - 2em);
|
||||||
|
}
|
||||||
|
}
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="photo-feed">
|
<div class="photo-feed">
|
||||||
{% assign photos_sorted = site.photos | sort: "date" | reverse %}
|
{% assign photos_sorted = site.photos | sort: "date" | reverse %}
|
||||||
{% for photo in photos_sorted %}
|
{% for photo in photos_sorted %}
|
||||||
<div class="photo-feed-entry" style="margin-bottom: 1em;">
|
<div class="photo-feed-entry">
|
||||||
<a href="{{ photo.url }}">
|
<a href="{{ photo.url }}">
|
||||||
<img src="/assets/photography/{{ photo.file }}" alt="A photo titled: {{ photo.title }}" style="width: 100%;">
|
<img src="/assets/photography/{{ photo.file }}" alt="A photo titled: {{ photo.title }}" style="width: 100%;">
|
||||||
</a>
|
</a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user