noyainrain / meetling

Web app for collaboratively preparing meetings.
https://meetling.org/
GNU General Public License v3.0
15 stars 2 forks source link

Split micro to stand-alone project #67

Closed noyainrain closed 7 years ago

noyainrain commented 7 years ago

Split the micro toolkit from Meetling to a stand-alone project.

noyainrain commented 7 years ago

Experimental branch: https://github.com/noyainrain/meetling/tree/split-micro

noyainrain commented 7 years ago

Brainstorming for UI / demo index.html:

<!DOCTYPE html>

<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="..." />
        <title>Hello</title>
        {% include micro/dependencies.html %}
        <script src="{{ static_url('hello.js') }}" defer="defer"></script>
    </head>

    <body is="hello-ui">
        {% include micro/boot.html %}

        {% include micro/templates.html %}

        <template class="hello-start-page-template">
            <ul data-content="list greetings 'greeting'">
                <li data-content="greeting.text"></li>
            </ul>
        </template>
    </body>
</html>