From a0ff296d747b320271012a4a94746845acb9a4e1 Mon Sep 17 00:00:00 2001
From: Tom Wiesing <tkw01536@gmail.com>
Date: Sun, 15 Oct 2017 15:18:43 +0200
Subject: [PATCH] Fix missing bullets (fixes #2)

---
 _includes/menu_sub.html | 2 +-
 _layouts/course.html    | 2 +-
 _layouts/jobad.html     | 2 +-
 _layouts/project.html   | 2 +-
 _layouts/system.html    | 2 +-
 people/cprodescu.md     | 2 +-
 public/css/main.css     | 6 ++++++
 7 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/_includes/menu_sub.html b/_includes/menu_sub.html
index 3c80495..4b4210b 100644
--- a/_includes/menu_sub.html
+++ b/_includes/menu_sub.html
@@ -51,7 +51,7 @@
                     {% endif %}
                 </a>
                 <div class="collapsible-body">
-                    <ul>
+                    <ul class='nobullets'>
                         <!-- If we have folders, iterate over them -->
                         {% if item.folder %}
                             {% for item in sorted_pages %}
diff --git a/_layouts/course.html b/_layouts/course.html
index fce566b..ebba09d 100644
--- a/_layouts/course.html
+++ b/_layouts/course.html
@@ -3,7 +3,7 @@ layout: default
 ---
 
 <div class="row">
-  <div class="col s12 m5 left">
+  <div class="col s12 m5 right">
     <div class="card">
       <div class="card-content">
         <span class="card-title">{{page.title}}</span>
diff --git a/_layouts/jobad.html b/_layouts/jobad.html
index db3b19b..5bea26f 100644
--- a/_layouts/jobad.html
+++ b/_layouts/jobad.html
@@ -3,7 +3,7 @@ layout: default
 ---
 
 <div class="row">
-  <div class="col s12 m5 left">
+  <div class="col s12 m5 right">
     <div class="card">
       <div class="card-content">
         <span class="card-title">{{page.title}}</span>
diff --git a/_layouts/project.html b/_layouts/project.html
index ec77ab4..3312410 100644
--- a/_layouts/project.html
+++ b/_layouts/project.html
@@ -3,7 +3,7 @@ layout: default
 ---
 
 <div class="row">
-    <div class="col s12 m5 left">
+    <div class="col s12 m5 right">
         <div class="card">
             <div class="card-content">
                 <span class="card-title">{{page.title}}</span>
diff --git a/_layouts/system.html b/_layouts/system.html
index dd82ebe..0712520 100644
--- a/_layouts/system.html
+++ b/_layouts/system.html
@@ -3,7 +3,7 @@ layout: default
 ---
 
 <div class="row">
-    <div class="col s12 m5 left">
+    <div class="col s12 m5 right">
         <div class="card">
             <div class="card-content">
                 <span class="card-title">{{page.title}}</span>
diff --git a/people/cprodescu.md b/people/cprodescu.md
index 7b96e98..4f48c66 100644
--- a/people/cprodescu.md
+++ b/people/cprodescu.md
@@ -2,7 +2,7 @@
 layout: person
 
 title: Corneliu Claudiu Prodescu 
-fullname: M.Sc. Corneliu Claudiu Prodescu
+fullname: M.Sc. Corneliu Prodescu
 
 role: master-student
 pic: public/images/cprodescu.png
diff --git a/public/css/main.css b/public/css/main.css
index 9c604bd..febbb36 100644
--- a/public/css/main.css
+++ b/public/css/main.css
@@ -30,6 +30,12 @@ h1, h2, h3, h4, h5, h6 {
   -webkit-font-smoothing: antialiased
 }
 
+ul:not(.side-nav):not(.collection):not(.collapsible):not(.nobullets) {
+  padding-left: 40px !important;
+}
+ul:not(.side-nav):not(.collection):not(.collapsible):not(.nobullets)  > li {
+  list-style-type: disc !important;
+}
 
 /* background color */
 .page-footer, 
-- 
GitLab