This is the repository of the official CAuDri-Challenge Website: www.caudri-challenge.de
Based on Jekyll and the Feeling Responsive Theme.
- Install Ruby and RubyGems
- Install Jekyll:
gem install jekyll
- Clone this repository
- Run
bundle install
in the repository directory - Run
bundle exec jekyll serve
to start the development server
Include this html snippet anywhere in the post body to display a single full size image.
<div class="row">
<div class="small-12 columns">
<img src="{{ site.urlimg }}/posts/2023-12-05/track.webp" alt="Aerial view of the CAuDri Challenge race track">
<p class="text-right caption">
The competition track at DHBW Stuttgart featuring various autonomous driving challenges
</p>
</div>
</div>
Additionally to the normal way of including images on a page, as descried above, you can also have a gallery made from an array of thumbnails, which expand when you click on them.
Setup the gallery in the posts yaml header.
gallery:
- image_url: posts/2024-11-30/car_uulm.webp
caption: Spatzenhirn team's autonomous car from University of Ulm.
- image_url: posts/2024-11-30/car_kit.webp
caption: The winning vehicle from KITcar team.
- image_url: posts/2024-11-30/car_dhbw.webp
caption: The hosts vehicle from DHBW Stuttgart.
Use this shortcode in the body of the post to include it at a particular position.
{% include gallery %}