Skip to content

Commit 20a0739

Browse files
Merge pull request #21 from codeplaysoftware/add-deliverables-page
Add Deliverables Page
2 parents fdcac8c + 0e809b8 commit 20a0739

8 files changed

+96
-9
lines changed

_includes/nav-bar.html

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
{% if page.url contains "about.html" %} class="selected" {% endif %}> About</a>
1919
<a href="{{'consortium' | absolute_url}}"
2020
{% if page.url contains "consortium.html" %} class="selected" {% endif %}> Consortium</a>
21+
<a href="{{'deliverables' | absolute_url}}"
22+
{% if page.url contains "deliverables.html" %} class="selected" {% endif %}> Deliverables</a>
2123
<a href="{{'contact' | absolute_url}}"
2224
{% if page.url contains "contact.html" %} class="selected" {% endif %}> Contact</a>
2325
</div>

_layouts/update.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<div class="wrapper content-and-side-content">
2424
<div>
2525
<a class="button back" href="{{'updates' | absolute_url}}" title="Back to All Updates">
26-
<span class="material-icons">arrow_back</span> Back</a>
26+
<span class="material-icons">arrow_back</span>Back</a>
2727
<header>
2828
<div>
2929
<h1>{{page.title}}</h1>

deliverables.html

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
layout: page
3+
---
4+
5+
<!-- Section: Consortium -->
6+
<section id="deliverables">
7+
<div class="wrapper">
8+
<h1><span class="material-icons">sports_score</span>Deliverables</h1>
9+
10+
<p>This page is designed to give an overview of the deliverables and target of the SYCLOPS project.</p>
11+
12+
<br />
13+
<br />
14+
15+
<!-- Consortium -->
16+
<table class="table">
17+
<thead>
18+
<tr>
19+
<th>Deliverable</th>
20+
<td>Overview</td>
21+
<td>Download</td>
22+
</tr>
23+
</thead>
24+
<tbody>
25+
<tr>
26+
<td>D1.1</td>
27+
<td>Describes mechanisms to be used during the project implementation, in order to ensure high
28+
quality of activities and deliverables</td>
29+
<td><a class="button"
30+
href="/static/files/deliverables/SYCLOPS-D1.1_ProjectManagementQualityAndRiskPlan_20230331.pdf"
31+
target="_blank"><span class="material-icons">cloud_download</span>Download Report</a>
32+
</td>
33+
</tr>
34+
<tr>
35+
<td>D1.2</td>
36+
<td>Describes mechanisms to handle data created or generated during the project.</td>
37+
<td><a class="button"
38+
href="/static/files/deliverables/SYCLOPS-D1.2_v0.1_DataManagementPlan_20230805.pdf"
39+
target="_blank"><span class="material-icons">cloud_download</span>Download Report</a>
40+
</td>
41+
</tr>
42+
<tr>
43+
<td>D2.1</td>
44+
<td>Provides the overall architectural blueprint of SYCLOPS together with inter and intra-layer
45+
interface definitions</td>
46+
<td><a class="button"
47+
href="/static/files/deliverables/SYCLOPS-D2.1_ArchitectureInterfaceBenchmarkSpec_20230805.pdf"
48+
target="_blank"><span class="material-icons">cloud_download</span>Download Report</a>
49+
</td>
50+
</tr>
51+
<tr>
52+
<td>D6.1</td>
53+
<td> Communication, Networking and Dissemination Plan and Activities</td>
54+
<td><a class="button"
55+
href="/static/files/deliverables/SYCLOPS_D6.1_Dissemination_and_communication_20230331.pdf"
56+
target="_blank"><span class="material-icons">cloud_download</span>Download Report</a>
57+
</td>
58+
</tr>
59+
</tbody>
60+
</table>
61+
</div>
62+
</section>

static/css/styled.scss

+31-8
Original file line numberDiff line numberDiff line change
@@ -61,22 +61,27 @@ body {
6161
max-width: 1300px;
6262
}
6363

64-
button {
64+
button, .button {
6565
padding: 1rem;
6666
font-size: 1rem;
67-
border: 0;
6867
background-color: var(--hint-color);
6968
color: white;
7069
border-radius: 6px;
7170
cursor: pointer;
7271
opacity: .8;
7372
transition: .1s all;
74-
display: block;
73+
display: inline-flex;
74+
align-items: center;
7575

7676
&:hover {
7777
opacity: 1;
7878
transform: scale(1.05);
7979
}
80+
81+
span {
82+
vertical-align: middle;
83+
margin-right: .4rem;
84+
}
8085
}
8186

8287
section {
@@ -484,7 +489,7 @@ body {
484489
}
485490
}
486491

487-
@media screen and (max-width: 940px) {
492+
@media screen and (max-width: 1090px) {
488493
.burger {
489494
display: block;
490495
}
@@ -745,6 +750,28 @@ body {
745750
}
746751
}
747752

753+
/**
754+
* Section: Deliverables
755+
*/
756+
section#deliverables {
757+
table {
758+
width: 100%;
759+
760+
td, th {
761+
padding: 1rem;
762+
763+
}
764+
765+
td:nth-of-type(1) {
766+
text-align: center;
767+
}
768+
769+
tbody tr:nth-of-type(odd) td {
770+
background-color: #dcdcdc;
771+
}
772+
}
773+
}
774+
748775
/**
749776
* Section: Update
750777
*/
@@ -789,10 +816,6 @@ body {
789816
.update-elements {
790817
.button.back {
791818
display: inline-flex;
792-
align-items: center;
793-
padding: 1rem;
794-
border: #ccc 1px solid;
795-
border-radius: 6px;
796819
}
797820
}
798821

Binary file not shown.

0 commit comments

Comments
 (0)