diff --git a/templates/project.html b/templates/project.html index 16385527c8e3192aecd92dfba95c3d756a4e83bd..f6bb5498142d1c22d4aa0a436afa030018052269 100644 --- a/templates/project.html +++ b/templates/project.html @@ -13,14 +13,25 @@ {% endblock %} {% block main %} -<section class="container section is-medium project-section-{{ section.extra.project_slug }}"> - <h1 class="title">{{ section.title }}</h1> - <h2 class="subtitle">{{ section.description }}</h2> - <ul class="box"> - {% for thesis in section.extra.theses %} - <li>{{ thesis }}</li> - {% endfor %} - </ul> - <div class="content">{{ section.content | safe }}</div> +<section class="hero hero-main"> + <div class="hero-body"> + <div class="container"> + <div class="columns"> + <div class="column is-two-fifth project-title"> + <h1>{{ section.title }}</h1> + <p> + {{ section.description }} + </p> + </div> + <div class="column project-theses"> + <ul> + {% for thesis in section.extra.theses %} + <li>{{ thesis }}</li> + {% endfor %} + </ul> + </div> + </div> + </div> + </div> </section> {% endblock %}