Skip to content

Commit

Permalink
screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-dejardin committed Aug 29, 2024
1 parent 527b9ff commit bd22946
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
24 changes: 12 additions & 12 deletions src/old_project.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
<div class="column frost">
<h2>{{ project.videast.name }}</h2>
<h3 class="role">👁️</h3>

{% for paragraph in project.videast.bio %}
<p>{{ paragraph }}</p>
{% endfor %}

{% for paragraph in project.videast.description %}
<p>{{ paragraph }}</p>
{% endfor %}

{% for link in project.videast.links %}
<p><a href={{ link.url }} target="_blank">{{ link.name }}</a></p>
{% endfor %}
Expand All @@ -45,15 +45,15 @@ <h3 class="role">👁️</h3>

<h2>{{ project.musician.name }}</h2>
<h3 class="role">👂</h3>

{% for paragraph in project.musician.bio %}
<p>{{ paragraph }}</p>
{% endfor %}

{% for paragraph in project.musician.description %}
<p>{{ paragraph }}</p>
{% endfor %}

{% for link in project.musician.links %}
<p class="">
<a href={{ link.url }} target="_blank">{{ link.name }}</a>
Expand All @@ -72,11 +72,11 @@ <h3 class="role">👂</h3>

</div>
</div>

</div>

<style>

.page-container
{
margin-top: 60px;
Expand All @@ -94,15 +94,15 @@ <h3 class="role">👂</h3>
bottom: 0;
filter: blur(8px);
}

.container
{
display: flex;
flex-wrap: wrap;
align-items: start;
justify-content: center;
}

.column
{
color: white;
Expand Down Expand Up @@ -161,5 +161,5 @@ <h3 class="role">👂</h3>
background-color: black;
color: white;
}
</style>

</style>
11 changes: 6 additions & 5 deletions src/project.njk
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ permalink: "projects/{{ project.folder | slugify }}/"

{% include "head.njk" %}
{% include "navigation.njk" %}

<div class="page-container">
<div class="background"></div>
<div class="content-wrapper">
Expand All @@ -20,13 +21,13 @@ permalink: "projects/{{ project.folder | slugify }}/"
</fieldset>
{% endif %}
{% if project.videast.description %}
<fieldset>
<fieldset>
<legend>Description</legend>
<div class="project-text-content">{{ project.videast.description | safe }}</div>
</fieldset>
{% endif %}
{% if project.videast.links|length > 0 %}
<fieldset>
<fieldset>
<legend>Links</legend>
{% for link in project.videast.links %}
<div class="ressource-button">
Expand All @@ -50,14 +51,14 @@ permalink: "projects/{{ project.folder | slugify }}/"
</fieldset>
{% endif %}
</div>

<div class="column video-column">
<h2>{{project.videast.name}} X {{project.musician.name}} &mdash; {{project.title}} </h2>
<video class="view box-shadow borders" controls>
<source src="/content/projects/{{ project.folder | slugify }}/clip.mp4" type="video/mp4" />
</video>
</div>

<div class="column musician-column">
<h2>Music {% phosphor "ear" %}</h2>
{% if project.musician.bio %}
Expand Down Expand Up @@ -233,4 +234,4 @@ document.addEventListener('DOMContentLoaded', function() {
handleResize();
});
</script>
</script>

0 comments on commit bd22946

Please sign in to comment.