Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanatra committed Oct 18, 2023
1 parent c42fc8e commit 33ae9b7
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 18 deletions.
9 changes: 8 additions & 1 deletion src/components/Posts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
{#each data.meta.media as img, idx}
<figure>
<img src={img.source} alt={img.cap} />
<figcaption>{img.cap}</figcaption>
{#if img.cap}
<figcaption>{img.cap}</figcaption>
{/if}
</figure>
{/each}
</div>
Expand All @@ -26,5 +28,10 @@
font-size: 0.75rem;
color: #9a9a9a;
font-family: "Inter", sans-serif;
margin-bottom: 1rem;
}
figure {
margin: 0;
}
</style>
1 change: 0 additions & 1 deletion src/lib/index.js

This file was deleted.

1 change: 0 additions & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script>
import { onMount } from "svelte";
import Cover from "@components/Cover.svelte";
import Posts from "@components/Posts.svelte";
Expand Down
8 changes: 4 additions & 4 deletions src/routes/texts/2_collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
title: The collections
media : [
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/c7b48cae702fd56291284b65d24f992bd451c542.jpeg",
cap: "caption",
source: "https://uclab.fh-potsdam.de/refa/files/asset/fd62d0f81f29836962a7d081061698b3feeedb00.jpeg",
cap: "",
},
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/fd62d0f81f29836962a7d081061698b3feeedb00.jpeg",
cap: "caption",
source: "https://uclab.fh-potsdam.de/refa/files/asset/8c9ae52455e064ea9adcb06f545a41c7c06142cb.jpg",
cap: "",
},
]
---
Expand Down
6 changes: 3 additions & 3 deletions src/routes/texts/3_visualisation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ title: Visualisation experiments
media : [
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/d25193a136394037b266f43cdc4aa5682c82b2db.png",
cap: "caption",
cap: "Painting and miniatures sorted by visual similarity.",
},
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/9194ee48e9dcf9d0c7ee7c1a36f49d2cc084cdc7.png",
cap: "caption",
source: "https://uclab.fh-potsdam.de/refa/files/asset/3990aa4021c25cf826bc9297ebb4868a6b300689.gif",
cap: "An early prototype of the ReFa reader.",
},
]
---
Expand Down
2 changes: 1 addition & 1 deletion src/routes/texts/4_modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Data Modeling
media : [
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/d24606fd113f3235eb817a36332050a14169caf7.png",
cap: "caption",
cap: "",
},
]
---
Expand Down
16 changes: 10 additions & 6 deletions src/routes/texts/6_scanning.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@ title: 3d scanning
media : [
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/1fd95abe767a7fb63bf0314e78d32bc95944565f.png",
cap: "caption",
cap: "Merging 3d data from different scans in Artec Studio.",
},
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/8067db0cdf11214d6331324604096397a962744c.gif",
cap: "caption",
source: "https://uclab.fh-potsdam.de/refa/files/asset/95842672babccb3e6a4eafba40168e4ce19f3d88.png",
cap: "",
},
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/606eacc212e5aa0c10e226f4ee9e6c3880cb3a50.gif",
cap: "caption",
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/1287fb1d2b1a13d0d17040c0dd7e4af3b7d4fb03.png",
cap: "Screenshots of the Ärmeljacke in Artec Studio.",
},
# {
# source: "https://uclab.fh-potsdam.de/refa/files/asset/606eacc212e5aa0c10e226f4ee9e6c3880cb3a50.gif",
# cap: "",
# },
]
---

Expand Down
2 changes: 1 addition & 1 deletion src/routes/texts/9_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: DATA explanation & Download packages
media : [
{
source: "https://uclab.fh-potsdam.de/refa/files/asset/b2a44bf793682399ba5c952fc1659f80f6c49225.png",
cap: "caption",
cap: "",
},
]
---
Expand Down

0 comments on commit 33ae9b7

Please sign in to comment.