gnusocial.rocks/soc/2020/daily_report/archive/app/views/components
Diogo Peralta Cordeiro 88c194c013 Some initial content 2021-03-28 21:41:35 +01:00
..
file.twig Some initial content 2021-03-28 21:41:35 +01:00
footer.twig Some initial content 2021-03-28 21:41:35 +01:00
google-analytics.twig Some initial content 2021-03-28 21:41:35 +01:00
header.twig Some initial content 2021-03-28 21:41:35 +01:00
readme.twig Some initial content 2021-03-28 21:41:35 +01:00
scroll-to-top.twig Some initial content 2021-03-28 21:41:35 +01:00
search.twig Some initial content 2021-03-28 21:41:35 +01:00

readme.twig

<div id="readme" class="my-4 {{ config('readmes_first') ? 'order-first' : null }}">
    <div class="rounded-lg overflow-hidden shadow-md">
        <header class="flex items-center bg-blue-600 px-4 py-3 text-white">
            <i class="fas fa-book fa-lg pr-3"></i> README.md
        </header>

        <article class="bg-gray-100 rounded-b-lg px-4 py-8 sm:px-6 md:px-8 lg:px-12 {{ readme.getExtension == 'md' ? 'markdown' : 'font-mono' }}" v-pre>
            {% if readme.getExtension == 'md' %}
                {{ markdown(readme.getContents) | raw }}
            {% else %}
                {{ readme.getContents | nl2br }}
            {% endif %}
        </article>
    </div>
</div>