Skip to content

boschglobal/embedded-linux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ELIOD website

Please note that the Bosch Embedded IoT Linux and OSS Day has taken place. Therefore, the ELIOD website is no longer maintained.

This repository hosts the sources of the website for the Bosch Embedded IoT Linux and OSS Day (ELIOD in short). The website is hosted using GitHub Pages and can be reached at https://boschglobal.github.io/embedded-linux/

The website is written with markdown files and utilizes MkDocs for rendering in combination with a customized version of the Material fo MkDocs theme.

Modifications

All of the pages are generated from markdown files. Making changes to these markdowns should be easy, as long as you stick to the proper markdown syntax.

Some page content is generated using jinja2 templates, that process data from YAML files. This especially holds for the keynotes and talks pages. Here a few additional things should be taken into account.

Modifications to exisiting keynotes or talks are to be made in the file keynotes.yaml or talks.yaml respectively.

When adding an additional talk or keynote entry, extra steps are required:

  • Add an additional entry to keynotes.yaml or talks.yaml for a new keynote or talk respectively.
  • The new entry should have an unique identifiable name tag, referenced here as <presentation_tag>. This tag is to be replaced in the following instructions with the name tag you created.
  • Stick to the same YAML structure as the other entries.
  • Add a markdown file named <presentation_tag>.md for each keynote or talk to the keynotes or talks directory respectively. This file should have the following content (don't forget to replace <presentation_tag> with your unique name tag):
    ---
    hide:
    - toc
    presentation: <presentation_tag>
    ---
    
    {% import 'presentation.md' as presentation %}
    
    {{ presentation.overview(metadata=keynotes[page.meta.presentation]) }}
  • Add a link entry to the nav section in the global mkdocs settings file, with the following syntax
    - <presentation_name>: keynotes/<presentation_name>.md
    or
    - <presentation_name>: talks/<presentation_name>.md
    for keynotes and talks respectively.
    Here, <presentation_name> should be replaced with the keynote/talk designation that should appear in the left hand side section menu on the speakers page. Also make sure, that the link entry is placed at the correct position in the nav section: Stick to the same order as in keynotes.yaml or talks.yaml.