FIX: Experiences don't have a description.

This commit is contained in:
MajorDroolz
2023-01-05 00:08:41 -05:00
parent a554ca8fa6
commit ec2e17cee1
2 changed files with 74 additions and 52 deletions

View File

@@ -4,11 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page.desc_type == "project" %}
<meta name="description" content="A description of work done by Maxim Voldman Hutz for {{page.title}}.">
{% else %}
<meta name="description" content="{{ page.description }}"> <meta name="description" content="{{ page.description }}">
{% endif %}
<link rel="shortcut icon" type="image/png" href="/res/favicon.png"> <link rel="shortcut icon" type="image/png" href="/res/favicon.png">

View File

@@ -1,15 +1,35 @@
--- <!DOCTYPE html>
desc_type: project <html lang="en">
layout: default <head>
--- <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A description of work done by Maxim Voldman Hutz for {{page.title}}.">
{% assign malung = site.data.work[page.project_id] %} <link rel="shortcut icon" type="image/png" href="/res/favicon.png">
{% assign techs = site.data.techs %}
<link rel="stylesheet" href="/styles/experience.css"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="/styles/tech.css"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<section id="experience" class="dark back"> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,500,1,200">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;900&display=swap">
<link rel="stylesheet" href="/styles/global.css">
<link rel="stylesheet" href="/styles/default.css">
<title>{{ page.title }} ─ Max Hutz</title>
</head>
<body>
{% include header.html %}
{% assign malung = site.data.work[page.project_id] %}
{% assign techs = site.data.techs %}
<link rel="stylesheet" href="/styles/experience.css">
<link rel="stylesheet" href="/styles/tech.css">
<section id="experience" class="dark back">
<section id="banner" class="{{malung.color}} back"> <section id="banner" class="{{malung.color}} back">
<div> <div>
<h1>{{malung.title}}</h1> <h1>{{malung.title}}</h1>
@@ -48,4 +68,10 @@ layout: default
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<div class="flex dark back npad"></div>
{% include footer.html %}
</body>
</html>