mirror of
https://github.com/safing/web
synced 2025-04-23 04:19:09 +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>
|
||||
<strong class="pl-2 opacity-75">(3)</strong>
|
||||
</div>
|
||||
{% include roadmap_card.html %}
|
||||
{% include roadmap_card.html %}
|
||||
{% include roadmap_card.html %}
|
||||
{% include roadmap_card.html %}
|
||||
{% include project_card.html %}
|
||||
{% include project_card.html %}
|
||||
{% include project_card.html %}
|
||||
{% include project_card.html %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -76,10 +76,9 @@ layout: page
|
|||
<span class="opacity-50">SPN</span>
|
||||
<strong class="pl-2 opacity-75">(3)</strong>
|
||||
</div>
|
||||
{% include roadmap_card.html %}
|
||||
{% include roadmap_card.html %}
|
||||
{% include roadmap_card.html %}
|
||||
|
||||
{% include project_card.html %}
|
||||
{% include project_card.html %}
|
||||
{% include project_card.html %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="pt-48">
|
||||
|
@ -88,7 +87,7 @@ layout: page
|
|||
<span class="opacity-50">BackOffice</span>
|
||||
<strong class="pl-2 opacity-75">(3)</strong>
|
||||
</div>
|
||||
{% include roadmap_card.html %}
|
||||
{% include project_card.html %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -96,8 +95,8 @@ layout: page
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<!--
|
||||
this is only for the roadmap backlog.
|
||||
<!--
|
||||
this is only for the roadmap backlog.
|
||||
Luke will clean this at a later date.
|
||||
-->
|
||||
<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);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
@media (min-width: 640px) {
|
||||
.gridwrapper{
|
||||
grid-template-columns: repeat(1, auto);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
@media (min-width: 1024px) {
|
||||
.gridwrapper{
|
||||
grid-template-columns: repeat(3, minmax(auto, 445px));
|
||||
}
|
||||
|
@ -141,5 +140,3 @@ layout: page
|
|||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ layout: page
|
|||
<strong class="pl-2 opacity-75">({{ site.data.next.cards.done.size }})</strong>
|
||||
</div>
|
||||
{% for card in site.data.next.cards.done %}
|
||||
{% include roadmap_card.html state = 'done' %}
|
||||
{% include project_card.html state = 'done' %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -60,7 +60,7 @@ layout: page
|
|||
</div>
|
||||
|
||||
{% for card in site.data.next.cards.in_progress %}
|
||||
{% include roadmap_card.html state = 'in_progress' %}
|
||||
{% include project_card.html state = 'in_progress' %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -75,7 +75,7 @@ layout: page
|
|||
</div>
|
||||
|
||||
{% for card in site.data.next.cards.discarded %}
|
||||
{% include roadmap_card.html state = 'discarded' %}
|
||||
{% include project_card.html state = 'discarded' %}
|
||||
{% endfor %}
|
||||
</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>
|
||||
</div>
|
||||
<div class="pt-10 gridwrapper">
|
||||
{% include roadmap_tablecard.html %}
|
||||
{% include roadmap_tablecard.html %}
|
||||
{% include roadmap_tablecard.html %}
|
||||
{% include project_tablecard.html %}
|
||||
{% include project_tablecard.html %}
|
||||
{% include project_tablecard.html %}
|
||||
</div>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="pt-10">
|
||||
{% include roadmap_tablecard.html %}
|
||||
{% include project_tablecard.html %}
|
||||
</div>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="pt-10">
|
||||
{% include roadmap_tablecard.html %}
|
||||
{% include project_tablecard.html %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -65,12 +65,12 @@ layout: page
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<!--
|
||||
this is only for the roadmap blog.
|
||||
<!--
|
||||
this is only for the roadmap blog.
|
||||
Luke will clean this at a later date.
|
||||
-->
|
||||
<style>
|
||||
|
||||
|
||||
.gridwrapper{
|
||||
display: grid;
|
||||
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);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
@media (min-width: 640px) {
|
||||
.gridwrapper{
|
||||
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