Table of contents

General principles

This website's graphical architecture is inspired by the principles of Brad Frost's Atomic Design. This method distinguishes five levels of graphic organisation:

Page
The “highest” graphical organisation level is the “page”, which corresponds to the conjunction of every other organizational elements to form a whole unit on which user experience can be measured.

Example: In this website, a “page” typically corresponds to an HTML document associated to a specific route.

Note:

At a “higher” organizational level, we could for instance consider the “website”, just as we could talk about the organization of pages inside a book. However, I consider that these organizational levels “above” that of the “page” are not “graphical”, but require other analytical frameworks.

Template
The “template” prescribes how the different elements are composed in each page.

Example: In our case, the “templates” describe principles such as the position of a navbar on top of the viewport, the presence of links in the footer, and so on. Technically, the “templates” are made possible thanks to Twig's concept of blocks, built with the {extends} instruction.

Organism
An “organism” is a graphical unit of the user interface which gathers multiple functional elements into one coherent group.

Example: the navbar on top of the page, the footer, or the “cards” design.

Molecule
A “molecule” corresponds to one functional unit of the graphical interface, which answers one specific use case.

Example: a line of a form, a button, etc.

Atom
Finally, “atoms” correspond to elementary units of the language (ie. made of a sole HTML element with no children, or with only text nodes), which can be articulated together to form “molecules”.

Example: an <input> field, which can form a molecule when combined with a <label> in a form row.

Templates

Every template for this website are divided in at least 4 main parts:

Navbar
The main navigation is fixed on top of the viewport, in order to always be accessible (except for specific clients such as printers).
Header
The page header contains three graphical organisms:
  1. a breadcrumb to locate the page in relation to the larger architecture of the site
  2. a banner with the title of the page and a short, optional description
  3. the outline linking to the main sections of the page.
Main content
The body of the page is made of multiple <article> elements. They must be identified by a <h2>–<h6> element. They can also be <section> elements. The template for each page adapts the form and content of these elements to fit the page's requirements.
Footer
The footer contains useful links and legal obligations.

These elements form a basis, from which the template of each page can be built. Titles of each article composing the page are automatically added to the outline with JavaScript.

Organisms

Navbar

The main navigation menu is divided in two sub-parts:

Brand
The website's brand with a link to the home page.
Contents
The actual menu, which contains the list of main links, but also action menus to access different translations.

The navbar can take different forms depending on the viewport's size.

  • On small screens, the actual menu is hidden by default, and will only be display when the toggle is checked on. Then, the menu will occupy the whole viewport, sticking the action menu in the bottom.
  • On larger screens, the menu is displayed on one row, with dropdown menus unfolding just below it, and the action menu right-aligned.

Example:

Breadcrumb

The breadcrumb displays links to the sections the current page belongs to. It is a succession of links with automatically added pseudo-elements to indicate the dependence relation.

Example:

Banner

A banner displays an image below some content, with a semi-transparent background to give some contrast in order to keep the content legible.

Example:

Outline

The outline contains links to the main sections of the page (ie. the <article> elements containing a <h2> title)

Example:

Cards

A card is an element with a header, a main content, and sometimes a section listing actions, which takes the form of small cards which can be placed next to each other.

Example:

A non voluptatibus id incidunt rerum qui autem. Sequi enim cum impedit nam quae a cumque. Sit sit ut perferendis quibusdam qui et. Et sit iusto ea. Dignissimos enim porro et quo cupiditate nostrum accusamus.

Temporibus dolores vel dolore tempore voluptas provident

Aut quos ipsum ad rem voluptates.

Inventore deleniti doloribus assumenda modi repellat eum vel. Dolore ea molestiae qui est eos et. Omnis officia quia dignissimos quis occaecati totam eum. Qui velit quis nam.

Reiciendis veniam ipsa sint harum modi fugiat. Iure dolorum minima doloremque itaque ducimus harum. Fuga et nostrum reprehenderit neque eveniet ut.

Timelines

Displays a sequence of chronologically-organized sections.

Example:
2026—2027

Et sed molestias

Nostrum amet

Nobis id eligendi quis atque excepturi. Consequatur ut repellat ut quod sit eum consequatur. Blanditiis accusantium veritatis provident ipsa neque.

Dolorem blanditiis consequatur esse consequatur aut doloribus repudiandae blanditiis. Nihil et dolorum dolorum ut. Fugiat dolore eum provident iure nesciunt. Temporibus nihil qui in doloremque quo sit.

Molestias maxime accusantium recusandae sequi aspernatur natus et. Aut deleniti placeat doloremque laboriosam aut. Maxime qui quis quia inventore laboriosam.

Sint neque tenetur ad ut dicta quia ipsam. Quisquam et est reprehenderit molestias odio natus distinctio. Rem quod natus magnam sit quod.

2025—2026

laboriosam dignissimos assumenda

Ex aut voluptatibus animi itaque nam

Quia voluptas nisi cumque ipsam aspernatur impedit est. Quam est quae sit repudiandae rerum quis qui. Non qui blanditiis aliquid eos cupiditate magnam est accusantium.

Cumque consequatur in voluptatum est. Impedit vero et porro et nam ex natus. Vel sint architecto aut quisquam error ducimus.

Dolorem nulla occaecati aspernatur hic. Laboriosam quibusdam aut non tempore corporis. Hic aut veritatis pariatur sed voluptatibus. Error sit ut vel dolores illum.

Blanditiis earum rem aut molestias sunt ea non non. Nam ab voluptatibus officiis dolorem nobis quod. Eum repellat sit hic reiciendis qui nam blanditiis.

2024—2025

Nobis cupiditate rerum aut quibusdam impedit dolor. Id est eum non id.

Placeat et consequatur occaecati perspiciatis. Omnis aspernatur ut saepe occaecati. Sed et vel non veritatis.

Est esse deleniti id repudiandae id. Et sunt eos magni ut suscipit quia in unde. Quidem qui et et inventore. Voluptatum voluptates velit nobis commodi.

Aut consequatur eius sit autem itaque. Autem delectus in sed est. Voluptate hic ut quia occaecati consequatur.

Error aut reiciendis est illum. Nostrum aperiam voluptas qui iusto. Recusandae vel quo doloribus repellat sequi.

Molecules

Forms

.form-row

One row of a form, which contains the actual input as well as helper elements (<label>, etc.), and which occupies the whole width of the container.

Example:
.btn

An element taking the shape of a button (whether it is a <button> or a <a> or any other interactive element).

Example: amet eos consequuntur a
.btn.form-row
Example: corporis in natus et

Atoms