Skip to content
Snippets Groups Projects
Commit 0f27102e authored by Kwangjin Lee's avatar Kwangjin Lee
Browse files

Merge branch 'main' of gitlab.tudelft.nl:mude/2024-website

parents ecc37503 b5b28106
No related branches found
No related tags found
1 merge request!4Update 2 files
Showing with 235 additions and 19 deletions
......@@ -13,11 +13,11 @@
# you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: MUDE Website 2024
title: MUDE
tagline: CEGM1000 Modelling, Uncertainty, and Data Analysis for Engineers
description: Website for TU Delft Module CEGM1000, or Modelling, Uncertainty, and Data Analysis for Engineers
description: Course website for TU Delft CEGM1000, or Modelling, Uncertainty, and Data Analysis for Engineers
author: By MUDE Teachers and the Student Army
baseurl: /2024 # the subpath of your site, e.g. /blog
baseurl: / # the subpath of your site, e.g. /blog
url: https://mude.citg.tudelft.nl # the base hostname & protocol for your site, e.g. http://example.com
exclude:
[
......@@ -32,6 +32,7 @@ exclude:
"_config.yml.bak",
]
logo: "/assets/logo/MUDE Logo.png"
footer_logo: "/assets/logo/TUDelft Logo.png"
# Theme settings
theme: just-the-docs
......@@ -41,17 +42,16 @@ heading_anchors: true
permalink: pretty
aux_links:
Brightspace:
- "https://brightspace.tudelft.nl/d2l/home/680254"
- "https://brightspace.tudelft.nl/d2l/home/594596"
Answers:
- "https://answers.citg.tudelft.nl"
Files:
- "https://mude.citg.tudelft.nl/2024/files"
- "https://mude.citg.tudelft.nl/course-files/"
Textbook:
- "https://mude.citg.tudelft.nl/2024/book"
- "https://mude.citg.tudelft.nl/book"
Home:
- "https://mude.citg.tudelft.nl"
aux_links_new_tab: true
footer_content: 'The MUDE Team &copy; 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>'
# Collections for website data
collections:
......@@ -99,5 +99,5 @@ compress_html:
blanklines: false
profile: false
# is_draft: true
# draft_banner: "This is the DRAFT version of the MUDE 2024 website. Content may change frequently."
\ No newline at end of file
is_draft: true
draft_banner: '⚠This is a draft website. The most recent published version can be found <a href="https://mude.citg.tudelft.nl/">here</a>.⚠'
......@@ -13,11 +13,11 @@
# you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: MUDE 2024 website
title: MUDE
tagline: CEGM1000 Modelling, Uncertainty, and Data Analysis for Engineers
description: Course website for TU Delft CEGM1000, or Modelling, Uncertainty, and Data Analysis for Engineers
author: By MUDE Teachers and the Student Army
baseurl: /2024/draft # the subpath of your site, e.g. /blog
baseurl: / # the subpath of your site, e.g. /blog
url: https://mude.citg.tudelft.nl # the base hostname & protocol for your site, e.g. http://example.com
exclude:
[
......@@ -32,6 +32,7 @@ exclude:
"_config.yml.bak",
]
logo: "/assets/logo/MUDE Logo.png"
footer_logo: "/assets/logo/TUDelft Logo.png"
# Theme settings
theme: just-the-docs
......@@ -41,17 +42,14 @@ heading_anchors: true
permalink: pretty
aux_links:
Brightspace:
- "https://brightspace.tudelft.nl/d2l/home/680254"
- "https://brightspace.tudelft.nl/d2l/home/594596"
Answers:
- "https://answers.citg.tudelft.nl"
Files:
- "https://mude.citg.tudelft.nl/2024/files"
- "https://mude.citg.tudelft.nl/course-files/"
Textbook:
- "https://mude.citg.tudelft.nl/2024/book"
Home:
- "https://mude.citg.tudelft.nl"
- "https://mude.citg.tudelft.nl/book"
aux_links_new_tab: true
footer_content: 'The MUDE Team &copy; 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>'
# Collections for website data
collections:
......@@ -100,4 +98,4 @@ compress_html:
profile: false
is_draft: true
draft_banner: "This is the draft version of the MUDE 2024 website. Content may change frequently."
draft_banner: 'This is a draft website. The most recent published version can be found <a href="https://mude.citg.tudelft.nl/">here</a>.⚠'
<div class="footer-logo">
<img src="{{ site.footer_logo | relative_url }}" alt="TU Delft Logo" style="height: 40px; width: auto;">
<img src="{{ site.logo | relative_url }}" alt="MUDE Logo" style="height: 40px; width: auto;">
</div>
<div>
The MUDE Team &copy; 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>
</div>
\ No newline at end of file
......@@ -69,4 +69,87 @@ div.banner>h2 {
margin-bottom: 0.5em;
}
/* End banner styles */
\ No newline at end of file
/* End banner styles */
// Define our colors
$nav-button-color: #00A6D6;
$hyperlink-color: #0076C2;
// Navigation bar, header links, and top-right auxiliary links
.site-nav,
.site-header,
.site-footer,
.aux-nav {
a {
color: $nav-button-color;
text-decoration: none;
&:hover,
&:focus {
color: darken($nav-button-color, 10%);
}
}
}
// Main content hyperlink color
.main-content {
a:not(.btn) {
color: $hyperlink-color;
text-decoration: none;
transition: color 0.2s ease;
font-weight: bold;
&:hover,
&:focus {
color: darken($hyperlink-color, 15%);
background-color: rgba($hyperlink-color, 0.1);
}
}
}
// Button styles (unchanged)
.btn {
background-color: $nav-button-color;
color: white;
border-color: $nav-button-color;
text-decoration: none;
&:hover,
&:focus {
background-color: darken($nav-button-color, 10%);
border-color: darken($nav-button-color, 10%);
color: white;
}
}
.btn-outline {
background-color: transparent;
color: $nav-button-color;
border-color: $nav-button-color;
&:hover,
&:focus {
background-color: $nav-button-color;
color: white;
}
}
// Increase size of the logo
.site-title {
font-size: 2rem !important;
img {
height: 70px !important;
width: auto !important;
max-width: none !important;
}
}
// Increase size of top right navigation links
.aux-nav {
a {
font-size: 1.1rem; // Increase font size
padding: 0.5rem 0.75rem; // Add some padding for better clickability
}
}
---
name: Alireza Amiri-Simkooei
role: Instructor
email: A.AmiriSimkooei@tudelft.nl
photo: Alireza.png
---
Time-Series Analysis.
\ No newline at end of file
---
name: Anastasios Stamou
role: Teaching Assistant
email: A.Stamou@student.tudelft.nl
photo: Anastasios.jpg
---
Civil Engineering / Geotechnical Engineering / Hydraulic and Offshore Structures
---
name: Antonio Magherini
role: Teaching Assistant
email: A.Magherini@student.tudelft.nl
photo: Antonio.jpg
---
Civil Engineering / Hydraulic Engineering
---
name: Caspar Jungbacker
role: Teaching Assistant
email: C.A.A.Jungbacker@student.tudelft.nl
photo: Caspar.jpg
---
Civil Engineering / Geoscience & Remote Sensing
\ No newline at end of file
---
name: Dhruv Mehta
role: Instructor
email: D.Mehta@tudelft.nl
photo: Dhruv.png
---
Numerical Analysis.
\ No newline at end of file
---
name: João Moura Pereira de Lucas Teixeira
role: Teaching Assistant
email: J.MouraPereiradeLucasTeixeira@student.tudelft.nl
photo: Joao.jpg
---
Applied Physics / Energy
---
name: Justin Pittman
role: Instructor
email: J.C.Pittman@tudelft.nl
photo: Justin.png
---
Numerical Analysis / Education Support
\ No newline at end of file
---
name: Nora Kovacs
role: Teaching Assistant
email: N.Kovacs-1@tudelft.nl
photo: nora.jpeg
---
Structural Engineering
\ No newline at end of file
---
name: Quinten van Woerkom
role: Teaching Assistant
email: Q.E.vanWoerkom@student.tudelft.nl
photo: Quinten.jpg
---
Aerospace Engineering / Spaceflight
\ No newline at end of file
---
name: Riccardo Taormina
role: Instructor
email: R.Taormina@tudelft.nl
photo: Riccardo.webp
---
Programming, Machine Learning
---
name: Rok Štular
role: Teaching Assistant
email: R.Stular@student.tudelft.nl
photo: Rok.webp
---
Computer Science / Software Development
\ No newline at end of file
---
name: Sophie Keemink
role: Teaching Assistant
email: S.D.S.Keemink@student.tudelft.nl
photo: Sophie.jpeg
---
Aerospace Engineering / Geoscience & Remote Sensing
\ No newline at end of file
---
name: Ajay Jagadeesh
role: Instructor
email: A.Jagadeesh@tudelft.nl
photo: Ajay.png
---
Numerical Analysis.
\ No newline at end of file
---
name: Christian Tiberius
role: Instructor
email: C.C.J.M.Tiberius@tudelft.nl
photo: Christian.jpg
---
Signal Processing.
\ No newline at end of file
---
name: Frans van der Meer
role: Instructor
email: F.P.vanderMeer@tudelft.nl
photo: Frans.jpg
---
Numerical Analysis.
\ No newline at end of file
---
name: Gonçalo Homem de Almeida Correia
role: Instructor
email: G.Correia@tudelft.nl
photo: Goncalo.jpeg
---
Optimization.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment