Skip to content

Commit

Permalink
SIGPL22S Photos
Browse files Browse the repository at this point in the history
  • Loading branch information
henrylee97 committed Sep 8, 2023
1 parent 9781117 commit cb1c6b5
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 0 deletions.
9 changes: 9 additions & 0 deletions content/photos/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ weight = 80
+++

# SIGPL 2023 Summer - Kangwon University
{{< gallery >}}
./sigpl23s/20230824_172410.jpg
./sigpl23s/20230824_172411.jpg
./sigpl23s/20230824_172412.jpg
./sigpl23s/20230824_172422.jpg
./sigpl23s/20230824_172452.jpg
./sigpl23s/20230824_172454.jpg
./sigpl23s/20230824_172459.jpg
{{< /gallery >}}
Binary file added content/photos/sigpl23s/20230824_172410.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172411.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172412.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172422.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172452.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172454.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/photos/sigpl23s/20230824_172459.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions layouts/shortcodes/gallery.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{{ $images := trim .Inner "\n" }}
{{ $images := split $images "\n" }}
<div id="carouselExample" class="carousel slide">
<div class="carousel-inner">
{{ range $idx, $image := $images }}
<div class="carousel-item{{ if eq $idx 0 }} active{{ end }}">
<img src="{{ $image }}" class="d-block w-100" alt="{{ $image }}">
</div>
{{ end }}
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExample" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExample" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>

0 comments on commit cb1c6b5

Please sign in to comment.