Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notifications.twig « templates « ExampleUI « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca69fcd8de1e5ec80eac9cc1f25cdcd7a9b94d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'user.twig' %}

{% set title %}UI Notification demo{% endset %}

{% block content %}
    <h2>Inline notification example</h2>

    <div style="display:inline-block;margin-top:10px;" id="exampleUI_notifications">
        <div piwik-notification
             notification-title="Info:"
             noclear="true"
             context="info">
            This is an example for an inline notification. Have you noticed the success message disappeared after a few seconds?
        </div>
    </div>
{% endblock %}