Skip to content

Commit

Permalink
Add carousel of selected pictures
Browse files Browse the repository at this point in the history
  • Loading branch information
sagitta1618 committed Feb 13, 2024
1 parent 06c973c commit cd9a48e
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 3 deletions.
4 changes: 1 addition & 3 deletions web/_templates/base.html
Expand Up @@ -105,9 +105,7 @@ <h1>{{ page.title }}</h1>
</footer>

<!-- Bootstrap bundled Javascript (with their dependencies) -->
<script src="js/bootstrap-5.1/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
<script src="js/bootstrap-5.1/bootstrap.bundle.min.js"></script>
<!-- Altmetric badge -->
<script src='https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js'></script>
<!-- Dimensions badge -->
Expand Down
Binary file added web/images/selection/1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/3.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/4.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/5.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/6.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/7.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/selection/8.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions web/index.md
Expand Up @@ -39,6 +39,44 @@ Agrogeophysics is an emerging research field. What are the current, potential an
Checkout the [Book of abstracts](https://agrogeo24.curve.space/) of the conference.
Here you can also [download it as a PDF](media/booklet_of_abstracts.pdf)


<div id="carouselExampleAutoplaying" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/selection/1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/3.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/4.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/5.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/6.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/7.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/selection/8.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" 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="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>

**Deadlines**:
- 15th December 2023 (abstract submission)
- 12th January 2024 (registration)
Expand Down

0 comments on commit cd9a48e

Please sign in to comment.