mirror of
https://github.com/safing/web
synced 2025-09-04 03:59:03 +00:00
Fix include tags after file renames
This commit is contained in:
parent
8c6425538e
commit
96f3d7ca0b
3 changed files with 32 additions and 35 deletions
|
@ -63,10 +63,10 @@ layout: page
|
||||||
<span class="opacity-50">Portmaster</span>
|
<span class="opacity-50">Portmaster</span>
|
||||||
<strong class="pl-2 opacity-75">(3)</strong>
|
<strong class="pl-2 opacity-75">(3)</strong>
|
||||||
</div>
|
</div>
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -76,10 +76,9 @@ layout: page
|
||||||
<span class="opacity-50">SPN</span>
|
<span class="opacity-50">SPN</span>
|
||||||
<strong class="pl-2 opacity-75">(3)</strong>
|
<strong class="pl-2 opacity-75">(3)</strong>
|
||||||
</div>
|
</div>
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-48">
|
<div class="pt-48">
|
||||||
|
@ -88,7 +87,7 @@ layout: page
|
||||||
<span class="opacity-50">BackOffice</span>
|
<span class="opacity-50">BackOffice</span>
|
||||||
<strong class="pl-2 opacity-75">(3)</strong>
|
<strong class="pl-2 opacity-75">(3)</strong>
|
||||||
</div>
|
</div>
|
||||||
{% include roadmap_card.html %}
|
{% include project_card.html %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -96,8 +95,8 @@ layout: page
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
this is only for the roadmap backlog.
|
this is only for the roadmap backlog.
|
||||||
Luke will clean this at a later date.
|
Luke will clean this at a later date.
|
||||||
-->
|
-->
|
||||||
<style>
|
<style>
|
||||||
|
@ -120,17 +119,17 @@ layout: page
|
||||||
box-shadow: 0 0px 90px 0 rgba(59, 93, 199, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0);
|
box-shadow: 0 0px 90px 0 rgba(59, 93, 199, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 640px) {
|
@media (min-width: 640px) {
|
||||||
.gridwrapper{
|
.gridwrapper{
|
||||||
grid-template-columns: repeat(1, auto);
|
grid-template-columns: repeat(1, auto);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
.gridwrapper{
|
.gridwrapper{
|
||||||
grid-template-columns: repeat(3, minmax(auto, 445px));
|
grid-template-columns: repeat(3, minmax(auto, 445px));
|
||||||
}
|
}
|
||||||
|
@ -141,5 +140,3 @@ layout: page
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ layout: page
|
||||||
<strong class="pl-2 opacity-75">({{ site.data.next.cards.done.size }})</strong>
|
<strong class="pl-2 opacity-75">({{ site.data.next.cards.done.size }})</strong>
|
||||||
</div>
|
</div>
|
||||||
{% for card in site.data.next.cards.done %}
|
{% for card in site.data.next.cards.done %}
|
||||||
{% include roadmap_card.html state = 'done' %}
|
{% include project_card.html state = 'done' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -60,7 +60,7 @@ layout: page
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% for card in site.data.next.cards.in_progress %}
|
{% for card in site.data.next.cards.in_progress %}
|
||||||
{% include roadmap_card.html state = 'in_progress' %}
|
{% include project_card.html state = 'in_progress' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,7 +75,7 @@ layout: page
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% for card in site.data.next.cards.discarded %}
|
{% for card in site.data.next.cards.discarded %}
|
||||||
{% include roadmap_card.html state = 'discarded' %}
|
{% include project_card.html state = 'discarded' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -32,9 +32,9 @@ layout: page
|
||||||
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-10 gridwrapper">
|
<div class="pt-10 gridwrapper">
|
||||||
{% include roadmap_tablecard.html %}
|
{% include project_tablecard.html %}
|
||||||
{% include roadmap_tablecard.html %}
|
{% include project_tablecard.html %}
|
||||||
{% include roadmap_tablecard.html %}
|
{% include project_tablecard.html %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-12">
|
<div class="pt-12">
|
||||||
|
@ -43,7 +43,7 @@ layout: page
|
||||||
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
{% include roadmap_tablecard.html %}
|
{% include project_tablecard.html %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-12">
|
<div class="pt-12">
|
||||||
|
@ -52,7 +52,7 @@ layout: page
|
||||||
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
<p>This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
{% include roadmap_tablecard.html %}
|
{% include project_tablecard.html %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -65,12 +65,12 @@ layout: page
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
this is only for the roadmap blog.
|
this is only for the roadmap blog.
|
||||||
Luke will clean this at a later date.
|
Luke will clean this at a later date.
|
||||||
-->
|
-->
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.gridwrapper{
|
.gridwrapper{
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(1, auto);
|
grid-template-columns: repeat(1, auto);
|
||||||
|
@ -90,11 +90,11 @@ layout: page
|
||||||
box-shadow: 0 0px 90px 0 rgba(59, 93, 199, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0);
|
box-shadow: 0 0px 90px 0 rgba(59, 93, 199, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 640px) {
|
@media (min-width: 640px) {
|
||||||
.gridwrapper{
|
.gridwrapper{
|
||||||
grid-template-columns: repeat(1, auto);
|
grid-template-columns: repeat(1, auto);
|
||||||
}
|
}
|
||||||
|
@ -104,9 +104,9 @@ layout: page
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Reference in a new issue