Better handling of the blog list on small screens
All checks were successful
Deploy ewpratten.com / Deploy to Production (push) Successful in 1m11s
All checks were successful
Deploy ewpratten.com / Deploy to Production (push) Successful in 1m11s
This commit is contained in:
parent
cb1361496a
commit
7eb5bd08c1
13
.vscode/tasks.json
vendored
13
.vscode/tasks.json
vendored
@ -10,6 +10,19 @@
|
|||||||
"options": {
|
"options": {
|
||||||
"cwd": "${workspaceFolder}"
|
"cwd": "${workspaceFolder}"
|
||||||
},
|
},
|
||||||
|
"args": [
|
||||||
|
"compose",
|
||||||
|
"up"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Launch development webserver (with build) (ewpratten.com)",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "docker",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
"args": [
|
"args": [
|
||||||
"compose",
|
"compose",
|
||||||
"up",
|
"up",
|
||||||
|
@ -154,3 +154,29 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Mobile-friendly dynamic formatting for the blog post list
|
||||||
|
ul#blog-post-list {
|
||||||
|
li {
|
||||||
|
span::after {
|
||||||
|
content: ":";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 535px) {
|
||||||
|
padding: 0 0.5em;
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
li {
|
||||||
|
span {
|
||||||
|
display: block;
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -9,10 +9,10 @@ title: Blog
|
|||||||
|
|
||||||
{% for group in grouped_posts %}
|
{% for group in grouped_posts %}
|
||||||
<h2>{{ group.name }}</h2>
|
<h2>{{ group.name }}</h2>
|
||||||
<ul>
|
<ul id="blog-post-list">
|
||||||
{% for post in group.items %}
|
{% for post in group.items %}
|
||||||
<li>
|
<li>
|
||||||
<span style="color: gray;">{{ post.date | date: "%Y-%m-%d" }}:</span>
|
<span style="color: gray;">{{ post.date | date: "%Y-%m-%d" }}</span>
|
||||||
<a href="{{ post.url | downcase }}">{{ post.title }}</a>
|
<a href="{{ post.url | downcase }}">{{ post.title }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user