mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 08:18:03 +00:00
88efc5e8bb
- Adjusted values in en and es yml files - Minor tweaks in a few pages - Changed head rules to pull correct page titles - Changed footer and header to loop correctly without a case statement and pull translated strings - Adjusted FFS layouts
41 lines
No EOL
1.2 KiB
HTML
41 lines
No EOL
1.2 KiB
HTML
---
|
|
layout: custom
|
|
title: titles.ffs-ideas
|
|
---
|
|
|
|
<div class="container ffs-backlink">
|
|
|
|
<p><a href="/forum-funding-system/"> Back to Forum Funding System</a></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<section class="container ideas">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="row">
|
|
{% for toplevel in site.data.ffs %}
|
|
{% if toplevel.stage == "Ideas" %}
|
|
{% for proposal in toplevel.proposals%}
|
|
<div class="half col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
|
<div class="info-block">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<h3><a href="{{proposal.url}}">{{proposal.name}}</a></h3>
|
|
<p>Summary: {{proposal.summary}}</p>
|
|
<p>Author: {{proposal.author}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{%endfor%}
|
|
{%endif%}
|
|
{%endfor%}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|