Showcasing innovation and research in Artificial Intelligence for Nuclear Medicine.
View the Project on GitHub jakubMitura14/OVGU_nuclear_projects
This document explains how to add new projects or update existing information on the OVGU Nuclear Medicine AI Projects website. The site is built using GitHub Pages and Jekyll, which makes content updates straightforward.
The website is organized as follows:
_config.yml
: The Jekyll configuration file. This sets the base theme for the site.index.md
: The main landing page for the website.HOW_TO.md
: This file, containing the contribution instructions.projects/
: This directory contains the individual Markdown subpages for each project.assets/
: This directory holds all static assets.projects/
directory, create a new Markdown file for your project (e.g., new-cool-project.md
).[Back to all projects](/)
index.md
file.Find the projects-section
<div>
. The structure looks like this:
<div class="projects-section">
<h2>Our Projects</h2>
<ul>
<li><a href="...">...</a></li>
<!-- Add new projects here -->
</ul>
</div>
Important: Add a new list item for your project using the HTML <li>
tag inside the <ul>
. This is critical to ensure it renders correctly.
<li><a href="./projects/new-cool-project.html">Name of Your New Cool Project</a></li>
Note on Rendering: To avoid issues with how GitHub Pages renders Markdown inside HTML, we use standard HTML tags (<h2>
, <ul>
, <li>
) for the project list section in the index.md
. Please maintain this structure.
assets/images/
directory..png
or .jpg
) into the assets/images/
directory.Reference the image in your project’s Markdown file.

The website’s appearance is controlled by the files in the assets/css/
directory and the theme set in _config.yml
. If you need to make design changes, you should edit these files.
The website is automatically built and deployed by GitHub Pages whenever changes are pushed to the main
branch. No special configuration is needed.