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

demo.twig « templates « Morpheus « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 621a8a6fdc2065ffe804f82f243ad55f965a1fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
{% extends 'layout.twig' %}

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

{% block head %}
    {{ parent() }}

    <style>
        .grid-demo .row {
            font-size: 13px;
            margin-bottom: 15px;
        }
        .grid-demo [class^=col-] {
            padding-top: 10px;
            padding-bottom: 10px;
            background-color: #eee;
            border: 1px solid #ddd;
        }
        .demo {
            margin: 0 0 15px 0;
            background-color: #fff;
            border: solid 1px #ddd;
            border-radius: 4px 4px 0 0;
            padding: 25px;
        }
        .demo-code {
            padding: 9px 14px;
            background-color: #f7f7f9;
            border: 1px solid #e1e1e8;
            margin: -16px 0 15px;
            border-bottom-right-radius: 4px;
            border-bottom-left-radius: 4px;
        }
        .demo-code pre {
            color: inherit;
            font-size: 14px;
            padding: 0;
            background-color: transparent;
            margin: 0;
        }
        .demo .div-block {
            max-width: 400px;
            margin-right: auto;
            margin-left: auto;
            min-height: 20px;
            padding: 19px;
            background-color: #f5f5f5;
            border: 1px solid #e3e3e3;
            border-radius: 4px;
        }
        .icons h4 {
            padding-top: 15px;
            padding-bottom: 10px;
        }
        .icons .icon {
            font-family: monospace, monospace;
            padding-top: 5px;
            padding-bottom: 5px;
        }
    </style>
{% endblock %}

{% block root %}

    <div class="container">

        <h1>{{ title }}</h1>
        <p>
            This page is intended to show all the UI components and styles available to use in Piwik.
        </p>

        <h2>Grid system</h2>
        <p>
            Materialize's grid system allows to organize the content in columns, all the while staying responsive for smaller screens.
        </p>
        <div class="grid-demo">
            <div class="row">
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
                <div class="col m1">.col m1</div>
            </div>
            <div class="row">
                <div class="col s8">.col m8</div>
                <div class="col m4">.col m4</div>
            </div>
            <div class="row">
                <div class="col m4">.col m4</div>
                <div class="col m4">.col m4</div>
                <div class="col m4">.col m4</div>
            </div>
            <div class="row">
                <div class="col m6">.col m6</div>
                <div class="col m6">.col m6</div>
            </div>
        </div>
        <p>
            Read more about <a href="http://materializecss.com/grid.html">Materialize's grid system</a>.
        </p>

        <h2>Typography</h2>

        <div class="demo">
            <h1>h1. heading</h1>
            <h2>h2. heading</h2>
            <h3>h3. heading</h3>
            <h4>h4. heading</h4>
            <h5>h5. heading</h5>
            <h6>h6. heading</h6>
            <p>
                This is a paragraph, and <a href="#">this is a link</a>.
            </p>
            <p>
                Another paragraph, lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
            </p>
        </div>

        <h3>Alignment classes</h3>

        <div class="demo">
            <p class="left">Left aligned block.</p>
            <p class="center">Center aligned block.</p>
            <p class="right">Right aligned block.</p>
        </div>
        <div class="demo-code">
            <pre>&lt;p class=&quot;left&quot;&gt;Left aligned block.&lt;/p&gt;
&lt;p class=&quot;center&quot;&gt;Center aligned block.&lt;/p&gt;
&lt;p class=&quot;right&quot;&gt;Right aligned block.&lt;/p&gt;</pre>
        </div>

        <div class="demo">
            <p class="left-align">Left aligned text.</p>
            <p class="center-align">Center aligned text.</p>
            <p class="right-align">Right aligned text.</p>
        </div>
        <div class="demo-code">
            <pre>&lt;p class=&quot;left-align&quot;&gt;Left aligned text.&lt;/p&gt;
&lt;p class=&quot;center-align&quot;&gt;Center aligned text.&lt;/p&gt;
&lt;p class=&quot;right-align&quot;&gt;Right aligned text.&lt;/p&gt;</pre>
        </div>

        <h3>Lists</h3>

        <div class="demo">
            <ul>
                <li>First item</li>
                <li>Second item</li>
            </ul>
        </div>
        <div class="demo-code">
            <pre>&lt;ul&gt;
  &lt;li&gt;...&lt;/li&gt;
&lt;/ul&gt;</pre>
        </div>

        <h2>Buttons</h2>

        <div class="demo">
            <a class="btn" href="#">Link</a>
            <input type="button" class="btn" value="Input">
            <input type="submit" class="btn" value="Submit">
        </div>
        <div class="demo-code">
            <pre>&lt;a class=&quot;btn&quot; href=&quot;#&quot;&gt;Link&lt;/a&gt;
&lt;input type=&quot;button&quot; class=&quot;btn&quot; value=&quot;Input&quot;&gt;
&lt;input type=&quot;submit&quot; class=&quot;brn&quot; value=&quot;Submit&quot;&gt;</pre>
        </div>

        <div class="demo">
            <button class="btn btn-large">Large button</button>
            <a class="btn btn-large" href="#">Large button</a>
        </div>
        <div class="demo-code">
            <pre>&lt;button class=&quot;btn btn-large&quot;&gt;Large button&lt;/button&gt;
&lt;a class=&quot;btn btn-large&quot; href=&quot;#&quot;&gt;Large button&lt;/a&gt;</pre>
        </div>

        <div class="demo">
            <div class="div-block">
                <a class="btn btn-block" href="#">Block button</a>
                <a class="btn btn-large btn-block" href="#">Large block button</a>
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;a class=&quot;btn btn-block&quot; href=&quot;#&quot;&gt;Block button&lt;/a&gt;
&lt;a class=&quot;btn btn-large btn-block&quot; href=&quot;#&quot;&gt;Large block button&lt;/a&gt;</pre>
        </div>

        <h3>Flat buttons</h3>

        <div class="demo">
            <a class="btn-flat" href="#">Flat button</a>
            <a class="btn-flat" href="#"><span class="icon-add"></span></a>
            <a class="btn-flat btn-large" href="#">Flat button</a>
            <a class="btn-flat btn-large" href="#"><span class="icon-add"></span></a>
        </div>
        <div class="demo-code">
            <pre>&lt;a class=&quot;btn-flat&quot; href=&quot;#&quot;&gt;Flat button&lt;/a&gt;
&lt;a class=&quot;btn-flat&quot; href=&quot;#&quot;&gt;&lt;span class=&quot;icon-add&quot;&gt;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;btn-flat btn-large&quot; href=&quot;#&quot;&gt;Flat button&lt;/a&gt;
&lt;a class=&quot;btn-flat btn-large&quot; href=&quot;#&quot;&gt;&lt;span class=&quot;icon-add&quot;&gt;&lt;/span&gt;&lt;/a&gt;</pre>
        </div>

        <h2>Loading indicator</h2>
        <div class="demo">
            <div piwik-activity-indicator loading="true"></div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-activity-indicator loading=&quot;true&quot;>&lt;/div></pre>
        </div>
        <p>
            This is an angular component. You can change the loading state via angular.
        </p>

        <h2>Progressbar</h2>
        <div class="demo">
            <div piwik-progressbar progress="5" label="'Downloading database'"></div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-progressbar progress=&quot;5&quot; label=&quot;Downloading database&quot;>&lt;/div></pre>
        </div>
        <p>
            This is an angular component. Update the progress and label via angular.
        </p>

        <h2>Alerts</h2>

        <div class="demo">
            <div piwik-alert="info">
                <strong>Info!</strong> This alert needs <a>your attention</a>, but it's not super important.
            </div>
            <div piwik-alert="success">
                <strong>Success!</strong> You successfully read this important <a>alert message</a>.
            </div>
            <div piwik-alert="warning">
                <strong>Warning!</strong> Better <a>check</a> yourself, you're not looking too good.
            </div>
            <div piwik-alert="danger">
                <strong>Error!</strong> Change <a>a few things</a> up and try submitting again.
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-alert=&quot;info&quot;&gt;
    &lt;strong&gt;Info!&lt;/strong&gt; This alert needs &lt;a&gt;your attention&lt;/a&gt;, but it's not super important.
&lt;/div&gt;
&lt;div piwik-alert=&quot;success&quot;&gt;
    &lt;strong&gt;Success!&lt;/strong&gt; You successfully read this important &lt;a&gt;alert message&lt;/a&gt;.
&lt;/div&gt;
&lt;div piwik-alert=&quot;warning&quot;&gt;
    &lt;strong&gt;Warning!&lt;/strong&gt; Better &lt;a&gt;check&lt;/a&gt; yourself, you're not looking too good.
&lt;/div&gt;
&lt;div piwik-alert=&quot;danger&quot;&gt;
    &lt;strong&gt;Error!&lt;/strong&gt; Change &lt;a&gt;a few things&lt;/a&gt; up and try submitting again.
&lt;/div&gt;</pre>
        </div>

        <h2>Forms</h2>

        <h3>Simple form</h3>

        <div class="demo">
            <div piwik-form>
                <div piwik-field uicontrol="text" name="username"
                     title="Username"
                     introduction="This is an introduction. It can be used to group form fields"
                     placeholder="Some text here">
                </div>

                <div piwik-field uicontrol="text" name="email"
                     title="Email"
                     inline-help="This is the inline help which provides more information.">
                </div>

                <div piwik-field uicontrol="text" name="textWithoutPlaceholder"
                     title="This field has a title but no place holder">
                </div>

                <div piwik-field uicontrol="text" name="textWithoutTitle"
                     title="This field has a place holder but no title">
                </div>

                <div piwik-field uicontrol="text" name="textWithValue"
                     value="My value"
                     title="This field has already a value set">
                </div>

                <div piwik-field uicontrol="password" name="password"
                     title="Password"
                     placeholder="Enter your password here">
                </div>

                <div id="complexHelpText" class="inline-help-node">
                    It is possible to use all kind of HTML in the help text, including <a href="javascript:;">links</a>.
                </div>

                <div piwik-field uicontrol="text" name="alias"
                     title="Disabeld text field"
                     disabled="true"
                     placeholder="This value cannot be changed"
                     inline-help="#complexHelpText">
                </div>

                <div piwik-field uicontrol="text" name="fullWidthText"
                     title="Form fields can be made full witdth"
                     full-width="true"
                     placeholder="Some text here...">
                </div>

                <div piwik-field uicontrol="textarea" name="description"
                     title="Description"
                     inline-help="This is a textarea. It automatically gets larger the more text is entered.">
                </div>

                <div piwik-field uicontrol="select" name="language"
                     title="Language"
                     introduction="Select fields"
                     value="1"
                     inline-help="Single select"
                     options='{1: "English",2:"Spanish"}'>
                </div>

                <div piwik-field uicontrol="multiselect" name="phonenumbers"
                     title="Phone numbers"
                     value="1"
                     inline-help="Multi select"
                     options='{1: "0123456789",2:"9876543210",3:"5432109876"}'>
                </div>

                <div piwik-field uicontrol="checkbox" name="enableFeature"
                     title="Enable feature"
                     introduction="Radio and checkboxes"
                     inline-help="This is a single checkbox">
                </div>

                <div piwik-field uicontrol="checkbox" name="enableFeature"
                     title="Enable feature"
                     var-type="array"
                     options='{today: "Today", yesterday: "Yesterday",week: "Previous 30 days (not including today)"}'
                     inline-help="This field shows multiple checkboxes as we declare we want to get an array of values.">
                </div>

                <div piwik-field uicontrol="radio" name="defaultReportDate"
                     title="Report to load by default"
                     options='{today: "Today", yesterday: "Yesterday",week: "Previous 30 days (not including today)"}'
                     inline-help="This is a help text that can be used to describe the field. This help text may extend over several lines.">
                </div>

                <div piwik-field uicontrol="site" name="currentsite"
                     introduction="Piwik specific form fields"
                     title="Select a website">
                </div>

                <div piwik-save-button></div>
                <div piwik-save-button
                     onconfirm="myController.save()"
                     disabled="myController.isDisabled"
                     value="Changed button text"
                     saving="myController.isLoading">
                </div>
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-form&gt;
    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;username&quot;
          title=&quot;Username&quot;
          introduction=&quot;This is an introduction. It can be used to group form fields&quot;
          placeholder=&quot;Some text here&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;email&quot;
         title=&quot;Email&quot;
         inline-help=&quot;This is the inline help which provides more information.&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;textWithoutPlaceholder&quot;
         title=&quot;This field has a title but no place holder&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;textWithoutTitle&quot;
         title=&quot;This field has a place holder but no title&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;textWithValue&quot;
         value=&quot;My value&quot;
         title=&quot;This field has already a value set&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;password&quot; name=&quot;password&quot;
         title=&quot;Password&quot;
         placeholder=&quot;Enter your password here&quot;&gt;
    &lt;/div&gt;

    &lt;div id=&quot;complexHelpText&quot; class=&quot;inline-help-node&quot;&gt;
        It is possible to use all kind of HTML in the help text, including &lt;a href=&quot;javascript:;&quot;&gt;links&lt;/a&gt;.
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;alias&quot;
         title=&quot;Disabeld text field&quot;
         disabled=&quot;true&quot;
         placeholder=&quot;This value cannot be changed&quot;
         inline-help=&quot;#complexHelpText&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;text&quot; name=&quot;fullWidthText&quot;
         title=&quot;Form fields can be made full witdth&quot;
         full-width=&quot;true&quot;
         placeholder=&quot;Some text here...&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;textarea&quot; name=&quot;description&quot;
         title=&quot;Description&quot;
         inline-help=&quot;This is a textarea. It automatically gets larger the more text is entered.&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;select&quot; name=&quot;language&quot;
         title=&quot;Language&quot;
         introduction=&quot;Select fields&quot;
         value=&quot;1&quot;
         inline-help=&quot;Single select&quot;
         options='{1: &quot;English&quot;,2:&quot;Spanish&quot;}'&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;multiselect&quot; name=&quot;phonenumbers&quot;
         title=&quot;Phone numbers&quot;
         value=&quot;1&quot;
         inline-help=&quot;Multi select&quot;
         options='{1: &quot;0123456789&quot;,2:&quot;9876543210&quot;,3:&quot;5432109876&quot;}'&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;checkbox&quot; name=&quot;enableFeature&quot;
         title=&quot;Enable feature&quot;
         introduction=&quot;Radio and checkboxes&quot;
         inline-help=&quot;This is a single checkbox&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;checkbox&quot; name=&quot;enableFeature&quot;
         title=&quot;Enable feature&quot;
         var-type=&quot;array&quot;
         options='{today: &quot;Today&quot;, yesterday: &quot;Yesterday&quot;,week: &quot;Previous 30 days (not including today)&quot;}'
         inline-help=&quot;This field shows multiple checkboxes as we declare we want to get an array of values.&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;radio&quot; name=&quot;defaultReportDate&quot;
         title=&quot;Report to load by default&quot;
         options='{today: &quot;Today&quot;, yesterday: &quot;Yesterday&quot;,week: &quot;Previous 30 days (not including today)&quot;}'
         inline-help=&quot;This is a help text that can be used to describe the field. This help text may extend over several lines.&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-field uicontrol=&quot;site&quot; name=&quot;currentsite&quot;
         introduction=&quot;Piwik specific form fields&quot;
         title=&quot;Select a website&quot;&gt;
    &lt;/div&gt;

    &lt;div piwik-save-button&gt;&lt;/div&gt;
    &lt;div piwik-save-button
         onconfirm=&quot;myController.save()&quot;
         disabled=&quot;myController.isDisabled&quot;
         value=&quot;Changed button text&quot;
         saving=&quot;myController.isLoading&quot;&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
            <p>If you do not want to use one ouf our form fields we recommend to add the class <code>browser-default</code> to the input or select element.</p>
        </div>

        <h2>Code</h2>

        <h3>Inline</h3>

        <div class="demo">
            <p>
                You can put code in a text using the <code piwik-select-on-focus>code</code> tag.
            </p>
        </div>
        <div class="demo-code">
            <pre>You can put code in a text using the &lt;code piwik-select-on-focus&gt;code&lt;/code&gt; tag.</pre>
        </div>

        <h3>Block</h3>

        <div class="demo">
            <p>Or you can display a code block:</p>
            <pre piwik-select-on-focus>&lt;!-- Piwik --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;
&lt;!-- End Piwik Code --&gt;</pre>
        </div>
        <div class="demo-code">
            &lt;pre piwik-select-on-focus&gt;...&lt;/pre&gt;
        </div>

        <h2>Tables</h2>

        <div class="demo">
            <table>
                <thead>
                <tr>
                    <th>First Name</th>
                    <th>Last Name</th>
                    <th>Username</th>
                </tr>
                </thead>
                <tbody>
                <tr>
                    <td>Mark</td>
                    <td>Otto</td>
                    <td>@mdo</td>
                </tr>
                <tr>
                    <td>Jacob</td>
                    <td>Thornton</td>
                    <td>@fat</td>
                </tr>
                <tr>
                    <td>Larry</td>
                    <td>the Bird</td>
                    <td>@twitter</td>
                </tr>
                </tbody>
            </table>
        </div>
        <div class="demo-code">
            <pre>&lt;table&gt;&lt;thead&gt;...&lt;/thead&gt;&lt;tbody&gt;...&lt;/tbody&gt;&lt;/table&gt;</pre>
        </div>

        <h2>Content intro</h2>

        <div class="demo">
            <div piwik-content-intro>
                <h2>My headline</h2>
                <p>My text goes is in here</p>
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-content-intro&gt;
    &lt;h2&gt;My headline&lt;/h2&gt;
    &lt;p&gt;My text goes is in here&lt;/p&gt;
&lt;/div&gt;</pre>
        </div>
        <p>A content intro can be used as an introduction to the following content and is usually used as the first part of a page followed by one or multiple content blocks.</p>

        <h2>Content blocks</h2>

        <div class="demo">
            <div piwik-content-block content-title="My title" help-url="https://piwik.org">
                <p>My text goes is in here</p>
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-content-block content-title=&quot;My title&quot; help-url=&quot;https://piwik.org&quot;&gt;
    &lt;p&gt;My text goes is in here&lt;/p&gt;
&lt;/div&gt;</pre>
        </div>

        <h3>Content Table</h3>

        <div class="demo">
            <div piwik-content-block content-title="My title" help-url="https://piwik.org">
                <p>My intro text is here</p>
                <table piwik-content-table>
                    <thead><tr><th>Column 1</th><th>Column 2</th></tr></thead>
                    <tbody>
                        <tr><td>Value 1</td><td>Value 2</td></tr>
                        <tr><td>Value 1</td><td>Value 2</td></tr>
                    </tbody>
                </table>
            </div>
        </div>
        <div class="demo-code">
            <pre>&lt;div piwik-content-block content-title=&quot;My title&quot; help-url=&quot;https://piwik.org&quot;&gt;
    &lt;p&gt;My intro text is here&lt;/p&gt;
    &lt;table piwik-content-table&gt;
        &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Column 1&lt;/th&gt;&lt;th&gt;Column 2&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;
        &lt;tbody&gt;
            &lt;tr&gt;&lt;td&gt;Value 1&lt;/td&gt;&lt;td&gt;Value 2&lt;/td&gt;&lt;/tr&gt;
            &lt;tr&gt;&lt;td&gt;Value 1&lt;/td&gt;&lt;td&gt;Value 2&lt;/td&gt;&lt;/tr&gt;
        &lt;/tbody&gt;
    &lt;/table&gt;
&lt;/div&gt;</pre>
        </div>

        <h2>Icons</h2>

        <div id="icons" class="demo icons">
        </div>
        <div class="demo-code">
            <pre>&lt;span class=&quot;icon-ok&quot;&gt;&lt;/span&gt;</pre>
        </div>

        <script>
            $(function () {

                var icons = {
                    'Manage': [
                        'add',
                        'edit',
                        'delete',
                        'plus',
                        'minus',
                        'archive'
                    ],
                    'Alerts': [
                        'error',
                        'warning',
                        'info',
                        'info2',
                        'success',
                        'help',
                        'help-alt',
                        'ok'
                    ],
                    'Navigation': [
                        'arrow-left',
                        'arrow-right',
                        'arrow-top',
                        'arrow-bottom',
                        'arrow-collapsed',
                        'zoom-in',
                        'zoom-out',
                        'show',
                        'hide',
                        'search',
                        'menu-hamburger',
                        'more-horiz',
                        'more-verti'
                    ],
                    'Window-Widget': [
                        'minimise',
                        'fullscreen',
                        'close',
                        'maximise',
                        'newtab',
                        'refresh',
                        'reload',
                    ],
                    'Reports': [
                        'table',
                        'table-more',
                        'chart-bar',
                        'chart-pie',
                        'chart-line',
                        'chart-line-details',
                        'funnel',
                        'form',
                        'lab'
                    ],
                    'Users': [
                        'user',
                        'user-add',
                        'users',
                        'alien',
                    ],
                    'Date-picker': [
                        'calendar',
                    ],
                    'Annotations': [
                        'annotation',
                    ],
                    'E-commerce': [
                        'ecommerce-order',
                        'ecommerce-abandoned-cart',
                    ],
                    'Goals': [
                        'goal',
                    ],
                    'Insights': [
                        'insights',
                    ],
                    'Segments': [
                        'segment',
                    ],
                    'Visitors': [
                        'visitor-profile',
                    ],
                    'Lock': [
                        'locked',
                        'locked-2',
                        'locked-3',
                        'locked-4',
                    ],
                    'Other': [
                        'configure',
                        'document',
                        'email',
                        'export',
                        'feed',
                        'download',
                        'image',
                        'code',
                        'star',
                        'drop',
                        'business',
                        'finance',
                        'folder',
                        'folder-charts',
                        'open-source',
                        'puzzle',
                        'server',
                        'server-alt',
                        'tag-cloud',
                        'play',
                        'sign-in',
                        'sign-out',
                        'settings'
                    ],
                };

                var iconsDiv = $('#icons');
                for(var category in icons) {
                    if (icons.hasOwnProperty(category)) {
                        iconsDiv.append('<h4>' + category + '</h4>');
                        var row = $('<div class="row"></div>');
                        icons[category].forEach(function(icon) {
                            icon = 'icon-' + icon;
                            row.append('<div class="col s4 icon"><span class="' + icon + '"></span> ' + icon + '</div>');
                        });
                        iconsDiv.append(row);
                    }
                }

            });
        </script>

    </div>

{% endblock %}