sitic
Version:
Generate static sites using Markdown and YAML. Straightforward, zero-complexity. Complete toolkit for landing pages, blogs, documentation, admin dashboards, and more.git remote add origin git@github.com:yuusoft-org/sitic.git
102 lines (85 loc) • 3.69 kB
HTML
<html lang="en">
<head>
{% include "core/htmlHeader.html" %}
</head>
<body>
<rtgl-view bgc="su" w="f" ah="c">
<rtgl-view md-w="100vw" lg-w="768" w="1024" p="l">
{% include "core/navbar.html" %}
<rtgl-view h="48"></rtgl-view>
<rtgl-text s="dm" mt="xl">Agreements</rtgl-text>
<rtgl-text s="tl" mt="l">Current Effective Agreements</rtgl-text>
<rtgl-view h="24"></rtgl-view>
{%- for agreement in collections['agreement'] -%}
{%- if agreement.status == 'Effective' -%}
<rtgl-view h="32" av="c">
<rtgl-text s="ll">
<a href="{{ agreement.url }}">{{ agreement.title }} {{ agreement.version }}</a>
</rtgl-text>
</rtgl-view>
{%- endif -%}
{%- endfor -%}
<rtgl-view h="48"></rtgl-view>
<rtgl-text s="tl">Past agreements changelog</rtgl-text>
<rtgl-view h="32" av="c" mt="l">
<rtgl-text s="tm">
Privacy Policy
</rtgl-text>
</rtgl-view>
<rtgl-view w="calc(100vw - 32px)" sh>
<rtgl-view w="640px">
<rtgl-view d="h">
<rtgl-view w="120"><rtgl-text s="bm">Version</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">Effective Date</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">Status</rtgl-text></rtgl-view>
<rtgl-view w="240"><rtgl-text s="bm">Changes</rtgl-text></rtgl-view>
</rtgl-view>
{%- for agreement in collections['privacy-policy'] -%}
<rtgl-view d="h">
<rtgl-view w="120"><rtgl-text s="bm"><a href="{{ agreement.url }}">{{ agreement.version
}}</a></rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.effective_date | postDate }}</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.status }}</rtgl-text></rtgl-view>
<rtgl-view w="240"><rtgl-text s="bm">
{%- for change in agreement.summary_of_changes -%}
<li>{{ change }}</li>
{%- endfor -%}
</rtgl-text></rtgl-view>
</rtgl-view>
{%- endfor -%}
</rtgl-view>
</rtgl-view>
<rtgl-view h="32" av="c" mt="l">
<rtgl-text s="tm">
Terms of Service
</rtgl-text>
</rtgl-view>
<rtgl-view w="calc(100vw - 32px)" sh>
<rtgl-view w="640px">
<rtgl-view d="h">
<rtgl-view w="120"><rtgl-text s="bm">Version</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">Effective Date</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">Status</rtgl-text></rtgl-view>
<rtgl-view w="240"><rtgl-text s="bm">Changes</rtgl-text></rtgl-view>
</rtgl-view>
{%- for agreement in collections['terms-of-service'] -%}
<rtgl-view d="h">
<rtgl-view w="120"><rtgl-text s="bm"><a href="{{ agreement.url }}">{{ agreement.version
}}</a></rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.effective_date | postDate }}</rtgl-text></rtgl-view>
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.status }}</rtgl-text></rtgl-view>
<rtgl-view w="240"><rtgl-text s="bm">
{%- for change in agreement.summary_of_changes -%}
<li>{{ change }}</li>
{%- endfor -%}
</rtgl-text></rtgl-view>
</rtgl-view>
{%- endfor -%}
</rtgl-view>
</rtgl-view>
</rtgl-view>
{% include "core/footer.html" %}
</rtgl-view>
</body>
</html>