Skip to content

Commit

Permalink
feat: option to download the full images
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronczichon committed Mar 22, 2024
1 parent fd74cee commit b076757
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 4 additions & 4 deletions personal/src/content/blog/january-24-winter-days.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ I took the day completely off from technology prepared some more stuff for the m

I want to share them with you!

![Cold days with a view over landscape and a road](https://directus.aaronczichon.de/assets/0b1983cf-0279-4441-8812-7cf3ade4129c?download&width=750)
![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/7193ea54-c084-4442-972a-fd7f955fde21?download&width=750)
![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/bbebbc3c-535d-4ffb-a248-3519fbb723a1?download&width=750)
![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/c38040b9-1656-4668-9594-d4b0361eec70?download&width=750)
[![Cold days with a view over landscape and a road](https://directus.aaronczichon.de/assets/0b1983cf-0279-4441-8812-7cf3ade4129c?download&width=750)](https://directus.aaronczichon.de/assets/0b1983cf-0279-4441-8812-7cf3ade4129c)
[![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/7193ea54-c084-4442-972a-fd7f955fde21?download&width=750)](https://directus.aaronczichon.de/assets/7193ea54-c084-4442-972a-fd7f955fde21)
[![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/bbebbc3c-535d-4ffb-a248-3519fbb723a1?download&width=750)](https://directus.aaronczichon.de/assets/bbebbc3c-535d-4ffb-a248-3519fbb723a1)
[![Cold days with a view over landscape](https://directus.aaronczichon.de/assets/c38040b9-1656-4668-9594-d4b0361eec70?download&width=750)](https://directus.aaronczichon.de/assets/c38040b9-1656-4668-9594-d4b0361eec70)

All photos where taken with an iPhone 15 Pro Max.

Expand Down
14 changes: 13 additions & 1 deletion personal/src/layouts/StartPage.astro
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
import { Image } from "astro:assets";
import Layout from "../layouts/Layout.astro";
import Hero from "../components/Hero.astro";
import BlogEntryList from "../components/BlogEntryList.astro";
import Divider from "../components/Divider.astro";
import HeroImage from "../resources/hero.jpeg";
import rssIcon from "../resources/rss.svg";
const { frontmatter } = Astro.props;
---
Expand All @@ -18,7 +21,16 @@ const { frontmatter } = Astro.props;
<slot />
</article>
<Divider margin="32px 0 32px 0" />
<h2>My latest blog entries</h2>
<h2>
My latest blog entries <a title="Yeah RSS is still cool!" href="/rss.xml"
><Image
style="width: 25px; height: 25px"
src={rssIcon}
alt="RSS Icon for subscribe to RSS feed."
widths={[30]}
sizes={`30px`}
/></a>
</h2>
<BlogEntryList limit="4" />
<a href="/blog" style="padding-bottom: 32px">read more...</a>
</main>
Expand Down
2 changes: 1 addition & 1 deletion personal/src/pages/blog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import rssIcon from "../resources/rss.svg";
<main class="container">
<article>
<h1>
Blog <a href="/rss.xml"
Blog <a title="Yeah RSS is still cool!" href="/rss.xml"
><Image
style="width: 25px; height: 25px"
src={rssIcon}
Expand Down

0 comments on commit b076757

Please sign in to comment.