-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
859 lines (768 loc) · 39.5 KB
/
index.html
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
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- <link rel="stylesheet" type="text/css" href="http://plone.github.io/mockup/dev/build/plone.min.css" media="all"> -->
<link rel="stylesheet" type="text/css" href="http://dist.plone.org/release/5.0a3-pending/plone-compiled.css" media="all">
<link rel="stylesheet" type="text/less" href="plonetheme/barceloneta/static/less/barceloneta.plone.less" media="all">
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/1.7.5/less.min.js"></script>
<script src="http://dist.plone.org/release/5.0a3-pending/plone-compiled.js"></script>
<style>
/*styles just to fit example test page*/
body {margin: 30px 0 0 !important; background: #f7f7f7;}
.test-contents {position: fixed;background: rgba(255,255,255,.9);z-index: 99999;top:10px; box-shadow: 0 0 5px rgba(0,0,0,.1);padding: 10px 10px 10px 20px;font-size: 80%;max-height: 90%; overflow-y: scroll; width: 150px; right:-130px; transition: all .25s;}
.test-contents:hover {right:0; transition: all .25s;}
.test-contents:before {content:"‹"; position: absolute; left:7px; top:-7px; font-size: 24px; color:#999;}
#content-core > h1 {text-transform: uppercase;font-weight: bold;font-size: 60px;border-top: 8px solid;padding-top: 30px;}
.test-example {border: 1px solid #ddd; box-shadow: 0 0 5px rgba(0,0,0,.1); padding: 10px 20px; margin: 30px 0; background: #fff;}
.test-example:before {content:"Example";position: absolute;border: 1px solid #ddd;padding: 5px 10px;margin-left: -21px;margin-top: -42px;background: #f7f7f7;}
.accent-label {background: #c00; font-size: 12px; color: #fff; padding: 2px 5px; border-radius: 50px;}
</style>
</head>
<body>
<div class="container-fluid" id="content">
<div id="main-container" class="row row-offcanvas row-offcanvas-right">
<div id="content-container">
<h1 class="documentFirstHeading">Plone User Interface elements test page</h1>
<p class="documentDescription">
This page lists the common user interface elements that exist in Plone, and
shows you how they are rendered. It also tests a couple of common Internet
Explorer rendering bugs, so you can see if your changes have triggered any
bad behaviour on this front.
</p>
<ul class="test-contents">
<li>
<a href="#typo">Typography</a>
<ul>
<li><a href="#heads">Headings</a></li>
<li><a href="#bodies">Body copies</a></li>
<li><a href="#lists">Lists</a></li>
</ul>
</li>
<li>
<a href="#code">Code</a>
<ul>
<li><a href="#codei">Inline Kbd, Code</a></li>
<li><a href="#codeb">Block Pre</a></li>
</ul>
</li>
<li><a href="#tables">Tables</a></li>
<li>
<a href="#forms">Forms</a>
<ul>
<li><a href="#basic">Basic</a></li>
<li><a href="#checks">Checks and radios</a></li>
<li><a href="#buttons">Buttons</a></li>
<li><a href="#groups">Groups</a></li>
</ul>
</li>
<li>
<a href="#alerts">Alerts</a>
<ul>
<li><a href="#standard-alerts">Standard</a></li>
<li><a href="#deprecated-alerts">Deprecated</a></li>
</ul>
</li>
<li><a href="#listing-bar">Listing bar</a></li>
</ul>
<div id="content-core">
<h1 id="typo">Typography</h1>
<h2 id="heads">Headings</h2>
<div class="test-example">
<h1>Headline h1</h1>
<h1 class="documentFirstHeading">Headline documentFirstHeading</h1>
<h2>Headline h2</h2>
<h3>Headline h3</h3>
<h4>Headline h4</h4>
<h5>Headline h5</h5>
<h6>Headline h6</h6>
<p>Paragraf line p</p>
</div>
<h2 id="bodies">Body copies</h2>
<div class="test-example">
<h3> Paragraph, strong, em, abbr, a links, documentDescription, address</h3>
<p>Normal document body text, <strong>strong text</strong>, <em>emphasised text</em>, <abbr title="abbreviation">abbr</abbr>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque odio sem, aliquam ut, suscipit at, aliquet non, justo. Vestibulum vitae urna et mi volutpat luctus. Nulla auctor, lacus ut consectetuer sagittis, erat odio vulputate sapien, eu placerat diam mauris id turpis. Aenean quis ipsum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque rutrum. Sed mattis turpis sit amet ipsum viverra pharetra. Nunc facilisis, augue non dapibus gravida, risus quam vulputate quam, non venenatis dui massa in leo. Maecenas scelerisque dapibus libero. Suspendisse potenti. example <a href="#">Normal internal site link</a> inside a paragraph, example <a href="http://plone.org">External link to plone.org</a>, example <a href="https://plone.org">Secure (HTTPS) link to plone.org</a>, example <a href="mailto:some@address">Mailto link</a>, example <a href="ftp://some.site">FTP link</a>, example <a href="news://some.site">NNTP (news) link</a>, example <a href="webcal://some.site">WebCal link</a>, example <a href="feed://some.site">RSS feed link</a>, example <a href="irc://some.network/#channel">IRC link</a>.</p>
<p class="discreet">Discreet paragraph</p>
<div class="documentDescription">The document description</div>
<div id="plone-document-byline" class="documentByLine">
<span class="documentAuthor"> by <a href="http://localhost:8080/Plone/author/admin">admin</a></span>
<span class="documentModified"> — <span> last modified </span> May 21, 2010 10:02 AM </span>
<span id="content-history" class="contentHistory"> — <a href="http://localhost:8080/Plone/front-page/@@historyview" rel="#pb_4" class="link-overlay" style="cursor: pointer;">History</a></span>
</div>
<p>DocumentByLine is not used anymore on the content <span class="accent-label">Moved to plonebar</span></p>
<address>
<strong>Plone Fundation</strong><br>
PO Box 344 <br>
Fortville IN 46040, USA<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
<a href="mailto:#">[email protected]</a>
</address>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
<h2 id="lists">Lists</h2>
<div class="test-example">
<h3>Ul, Ol, Dl <span class="accent-label">DL is deprecated in Plone as a builder element</span></h3>
<ul>
<li>Unordered list element 1
<ul>
<li>Unordered list subelement 1</li>
</ul>
</li>
<li>Unordered list element 2</li>
<li>Unordered list element 3</li>
</ul>
<ol>
<li>Ordered list element 1
<ol>
<li>Ordered list subelement 1</li>
</ol>
</li>
<li>Ordered list element 2</li>
<li>Ordered list element 3</li>
</ul>
<dl>
<dt>Definition list term</dt>
<dd>Definition List description, Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque odio sem, aliquam ut, suscipit at, aliquet non, justo.
</dd>
<dd>Another Definition List description, Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque odio sem, aliquam ut, suscipit at, aliquet non, justo.
</dd>
</dl>
</div>
<br>
<br>
<h1 id="code">Code</h1>
<h2 id="codei">Inline Kbd, Code</h2>
<div class="test-example">
<h3>Kbd, Code</h3>
<kbd>kbd</kbd>
<code>code</code>
<pre>Example document <code>code inside pre</code></pre>
</div>
<h2 id="codeb">Block Pre</h2>
<div class="test-example">
<h3>Pre with code in it</h3>
<pre>Example document <code>code inside pre</code></pre>
</div>
<br>
<br>
<h1 id="tables">Tables</h1>
<h2>Plone tables styles</h2>
<div class="test-example">
<h3>Table</h3>
<table summary="Sortable table example">
<!-- By giving a table an ID, it gets the sortable option.
Use class="nosort" to override on a table or column basis. -->
<thead>
<tr>
<th>Table</th>
<th>Another heading (sortable, click to sort)</th>
<th class="nosort">Fixed column (not sortable)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Odd table item</td>
<td>Item 1</td>
<td>Another item</td>
</tr>
<tr class="even">
<td>Even table item</td>
<td>Item 2</td>
<td>Yet another item</td>
</tr>
<tr class="odd">
<td>Odd table item</td>
<td>Item 3</td>
<td>And one more item</td>
</tr>
</tbody>
</table>
<h3>Table .listing</h3>
<table class="listing" id="someid" summary="Sortable table example">
<!-- By giving a table an ID, it gets the sortable option.
Use class="nosort" to override on a table or column basis. -->
<thead>
<tr>
<th>.Listing</th>
<th>Another heading (sortable, click to sort)</th>
<th class="nosort">Fixed column (not sortable)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Odd table item</td>
<td>Item 1</td>
<td>Another item</td>
</tr>
<tr class="even">
<td>Even table item</td>
<td>Item 2</td>
<td>Yet another item</td>
</tr>
<tr class="odd">
<td>Odd table item</td>
<td>Item 3</td>
<td>And one more item</td>
</tr>
</tbody>
</table>
<h3>Table .vertical</h3>
<table class="vertical listing" summary="Vertical listing example">
<tbody>
<tr>
<th>.vertical.listing</th>
<td>Odd table item</td>
</tr>
<tr>
<th>Another heading</th>
<td>Even table item</td>
</tr>
</tbody>
</table>
</div>
<br>
<br>
<h1 id="forms">Forms</h1>
<h2 id="basic">Basic</h2>
<div class="test-example">
<form>
<fieldset>
<legend>Fieldset legend</legend>
<div class="field">
<label for="onefield">Text field</label>
<span class="fieldRequired" title="Required">(Required)</span>
<div class="formHelp">
This is the help for this form field. And <a href="#">links are also possible</a>.
</div>
<input type="text" id="onefield" value="Some content">
</div>
<div class="field error">
<label for="anotherfield">Text field with error</label>
<span class="fieldRequired" title="Required">(Required)</span>
<div class="formHelp">
This field is just here to demonstrate an error message.
</div>
<div>This is the error message.</div>
<input type="text" id="anotherfield" value="Some content">
</div>
<div class="field">
<label for="exampleInputFile">File input</label>
<p class="formHelp">Example block-level help text here.</p>
<input type="file" id="exampleInputFile">
</div>
<div class="field">
<label for="exampleInputFile">Select</label>
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="field">
<label for="exampleInputFile">Select Multiple</label>
<select multiple>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="field">
<label for="exampleInputFile">Textarea</label>
<textarea rows="3"></textarea>
</div>
</fieldset>
</form>
</div>
<h2 id="checks">Checks and radios</h2>
<div class="test-example">
<form>
<fieldset>
<legend>Fieldset legend</legend>
<div class="field">
<label for="onecheckbox">Checkbox</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This is a checkbox field.
</div>
<input type="checkbox" id="onecheckbox">
</div>
<div class="field error">
<label for="anothercheckbox">Checkbox with error</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This checkbox field is just here to demonstrate an error message.
</div>
<div>This is the error message.</div>
<input type="checkbox" id="anothercheckbox">
</div>
<div class="field">
<label for="onestylishcheckbox">Checkbox without border</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This is a checkbox field.
</div>
<input type="checkbox" class="noborder" id="onestylishcheckbox">
</div>
<div class="field error">
<label for="anotherstylishcheckbox">
Checkbox without border with error</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This checkbox field is just here to demonstrate an error message.
</div>
<div>This is the error message.</div>
<input type="checkbox" class="noborder" id="anotherstylishcheckbox">
</div>
<div class="field">
<label>Radio</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This is a checkbox field.
</div>
<label>First
<input class="noborder" type="radio" name="radio_group1">
</label>
<br>
<label>Second
<input class="noborder" type="radio" name="radio_group1">
</label>
<br>
<label>Third
<input class="noborder" type="radio" name="radio_group1">
</label>
<br>
</div>
<div class="field error">
<label>Radio with error</label>
<span class="fieldRequired" title="Required" i18n:attributes="title title_required;" i18n:translate="label_required">(Required)</span>
<div class="formHelp">
This checkbox field is just here to demonstrate an error message.
</div>
<div>This is the error message.</div>
<label>First
<input class="noborder" type="radio" name="radio_group2">
</label>
<br>
<label>Second
<input class="noborder" type="radio" name="radio_group2">
</label>
<br>
<label>Third
<input class="noborder" type="radio" name="radio_group2">
</label>
<br>
</div>
</fieldset>
</form>
</div>
<h2 id="buttons">Buttons</h2>
<div class="test-example">
<form>
<fieldset>
<legend>Fieldset legend</legend>
<div class="formControls">
<input class="context" type="submit" value="Context submit">
<input class="standalone" type="submit" value="Standalone submit">
<input class="destructive" type="submit" value="Destructive submit">
<input type="submit" value="Submit">
</div>
<div class="formControls">
<input class="context" type="button" value="Context button">
<input class="standalone" type="button" value="Standalone button">
<input class="destructive" type="button" value="Destructive button">
<input type="button" value="Button">
</div>
</fieldset>
</form>
</div>
<h2 id="groups">Groups</h2>
<div class="test-example">
<p>Replaces Plone4 input+submit group</p>
<div class="input-group">
<input class="searchPage form-control" name="SearchableText" type="text" size="25" title="Search Site" value="page">
<span class="input-group-btn">
<input class="searchPage allowMultiSubmit btn btn-primary" type="submit" value="Search">
</span>
</div>
</div>
<br>
<br>
<h1 id="forms">Alerts</h1>
<h2 id="standard-alerts">Standard alerts</h2>
<div class="test-example">
<div class="portalMessage">
<strong>Non defined</strong> You have not configured a mail host or a site 'From' address, various features including contact forms, email notification and password reset will not work. Go to the <a href="http://plone.iskra.cat:8080/Plone/@@mail-controlpanel">Mail control panel</a> to fix this.
</div>
<div class="portalMessage info">
<strong>Info</strong> You have not configured a mail host or a site 'From' address, various features including contact forms, email notification and password reset will not work. Go to the <a href="http://plone.iskra.cat:8080/Plone/@@mail-controlpanel">Mail control panel</a> to fix this.
</div>
<div class="portalMessage warning">
<strong>Warning</strong> You have not configured a mail host or a site 'From' address, various features including contact forms, email notification and password reset will not work. Go to the <a href="http://plone.iskra.cat:8080/Plone/@@mail-controlpanel">Mail control panel</a> to fix this.
</div>
<div class="portalMessage error">
<strong>Error</strong> You have not configured a mail host or a site 'From' address, various features including contact forms, email notification and password reset will not work. Go to the <a href="http://plone.iskra.cat:8080/Plone/@@mail-controlpanel">Mail control panel</a> to fix this.
</div>
</div>
<h2 id="deprecated-alerts">Deprecated alerts</h2>
<div class="test-example">
<p>Alerts in DL not anymore <span class="accent-label">Changed</span></p>
<dl class="portalMessage warning">
<dt> Warning</dt>
<dd>
The portalMessage 'warning' class, can also contain <a href="#">links</a> - used to
give the user temporary status messages.
</dd>
</dl>
</div>
<br>
<br>
<h1 id="listing-bar">Listing bar</h1>
<h2>Plone pages listings</h2>
<div class="test-example">
<p>Need to be changed in structure a correct markup <span class="accent-label">Must be changed</span>
<p class="discreet">Appears on search page</p>
<nav class="pagination">
<ul>
<li class="previous"><a href="">« Previous 10 items</a></li>
<li class="next"><a href="">Next 10 items »</a></li>
<li class="first"><a href="">1</a></li>
<li class="disabled">...</li>
<li><a href="">4</a></li>
<li><a href="">5</a></li>
<li><a href="">6</a></li>
<li class="active">[<span>7</span>]</li>
<li><a href="">8</a></li>
<li><a href="">9</a></li>
<li class="disabled">...</li>
<li class="last"><a href="">12</a></li>
</ul>
</nav>
</div>
<div class="row" id="mainnavigation-wrapper">
<div class="container-fluid" id="mainnavigation">
<p class="hiddenStructure">Navigation</p>
<nav class="navbar" id="portal-globalnav-wrapper" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#portal-globalnav-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="portal-globalnav-collapse">
<ul class="nav navbar-nav" id="portal-globalnav">
<li id="portaltab-index_html" class="selected">
<a href="http://localhost:8080/Plone" title="">Inici</a>
</li>
<li id="portaltab-news" class="plain">
<a href="http://localhost:8080/Plone/news" title="Noticies del lloc">Noticies</a>
</li>
<li id="portaltab-events" class="plain">
<a href="http://localhost:8080/Plone/events" title="Esdeveniments del lloc">Esdeveniments</a>
</li>
<li id="portaltab-Members" class="plain">
<a href="http://localhost:8080/Plone/Members" title="Contenidor per als directoris personals dels usuaris del portal">Usuaris</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="hero" role="banner">
<div class="container-fluid">
<div class="jumbotron">
<h1>Welcome!</h1>
<p>Plone 5 rocks!</p>
<p><a href="http://plone.com" class="btn btn-primary btn-lg" role="button" target="_blank">Learn more</a></p>
</div>
</div>
</div>
<h4>in portlets</h4>
<div style="width: 300px"> <!-- just to make these look like portlets -->
<section class="portlet">
<header class="portletHeader">Portlet header</header>
<ul class="portletContent">
<li class="portletItem">Item one</li>
<li class="portletItem">Item two</li>
</ul>
<footer class="portletFooter">Portlet footer</footer>
</section>
If a portlet has only one item:
<section class="portlet">
<header class="portletHeader">Portlet header</header>
<div class="portletContent">
There might be a login form here.
<form>
<input type="text" value="login" /> <br />
<input type="password" value="password" /> <br />
<input type="submit" />
</form>
</div>
<footer class="portletFooter">Portlet footer</footer>
</section>
</div>
<h4>in listings</h4>
<div>
<article>
<heading><a href="">Item one</a></heading>
<p>Description</p>
</article>
<article>
<heading><a href="">Item two</a></heading>
<p>Description</p>
</article>
</div>
<h2>Table with form elements</h2>
<form>
<table id="sortable"
class="listing"
summary="Content listing"
cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="nosort">
<input class="noborder"
type="checkbox"
src="select_all_icon.png"
name="selectButton"
title="Select all items"
onClick="toggleSelect(this,'paths:list');"
tal:attributes="src string:${context/portal_url}/select_all_icon.png"
alt="Select all items"
i18n:attributes="title label_select_all_items; alt label_select_all_items;" />
</th>
<th> Title </th>
<th> Stuff </th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>
<input type="checkbox"
class="noborder"
name="paths:list" id="#"
value="#" />
</td>
<td><a href="#">Title</a></td>
<td>with class noborder</td>
</tr>
<tr class="even">
<td>
<input type="checkbox"
class="noborder"
name="paths:list" id="#"
value="#" />
</td>
<td><a href="#">Title</a></td>
<td>with class noborder</td>
</tr>
</tbody>
</table>
</form>
<div>
<h2>Collapsible form</h2>
<form id="searchform" name="search" method="get" class="enableAutoFocus" action="search">
<div class="field collapsible">
<label class="collapser collapsed" for="created">New items since</label>
<div class="collapse" style="display: none;">
<div class="formHelp">
Return items added since you were last logged on, the last week, etc.
</div>
<select id="created" name="created:list:date">
<option value="2010/09/06 17:50:45.971272 GMT-7">Last log-in</option>
<option value="2010/09/05"> Yesterday </option>
<option value="2010/08/30"> Last week </option>
<option value="2010/08/06"> Last month </option>
<option selected="selected" class="default_option" value="1970/02/01"> Ever </option>
</select>
</div>
</div>
<div class="field collapsible">
<label class="collapser collapsed" for="Creator">Author</label>
<div class="collapse" style="display: none;">
<div class="formHelp">
Return items created by a particular person.
</div>
<select id="Creator" name="Creator">
<option class="default_option" value="">Any Author</option>
<option value="admin">admin</option>
</select>
</div>
</div>
<div id="clear-space-before-submit" class="visualClear"><!-- --></div>
</form>
</div>
<div>
<h2>Select All/None</h2>
<form id="searchform" name="search" method="get" class="enableAutoFocus" action="search">
<div>
<label>Item type</label>
<div>
<div class="formHelp">
Return items of a specific type.
</div>
<span class="optionsToggle">
<input type="checkbox" checked="checked" class="noborder" id="pt_toggle" value="#" name="pt_toggle" onclick="javascript:toggleSelect(this, 'portal_type:list', true)" src="http://localhost:8080/Plone/select_all_icon.png">
<label for="pt_toggle">Select All/None
</label>
</span>
<br>
<div style="float: left; margin-right: 2em;">
<input type="checkbox" id="portal_type_1_1" checked="checked" class="noborder" value="Document" name="portal_type:list">
<label for="portal_type_1_1">Page</label>
<br>
<input type="checkbox" id="portal_type_1_2" checked="checked" class="noborder" value="Folder" name="portal_type:list">
<label for="portal_type_1_2">Folder</label>
<br>
</div>
<div style="float: left; margin-right: 2em;">
<input type="checkbox" id="portal_type_2_1" checked="checked" class="noborder" value="Topic" name="portal_type:list">
<label for="portal_type_2_1">Collection</label>
<br>
</div>
<div id="clear-after-item-type" class="visualClear">
</div>
</form>
</div>
<div>
<h2>Action menu</h2>
<dl class="actionMenu" id="actioMenuDemo">
<dt class="actionMenuHeader">
<a href="#">Action menu title</a>
</dt>
<dd class="actionMenuContent">
Menu content
</dd>
</dl>
</div>
<div>
<h2>Collapsible section</h2>
<dl class="collapsible">
<dt class="collapsibleHeader">
Collapsable section title
</dt>
<dd class="collapsibleContent">
Collapsible section content
</dd>
</dl>
</div>
<h2>The Internet Explorer "Peekaboo" bug</h2>
<p>
Also known as the "disappearing text" bug. Full explanation of this bug can be
found on
<a href="http://www.positioniseverything.net/explorer/peekaboo.html">
the page dedicated to this at positioniseverything.net</a>.
</p>
<h2>Widgets</h2>
<p>
<textarea class="pat-tinymce">Content to be edited</textarea>
</p>
<p>
<input class="pat-pickadate" type="text" name="form.widgets.IDublinCore.effective" value="" data-pat-pickadate="{"date": {"format": "mmmm d, yyyy", "monthsShort": ["gen.", "feb.", "mar\u00e7", "abr.", "maig", "juny", "jul.", "ag.", "set.", "oct.", "nov.", "des."], "max": [2034, 1, 1], "clear": "Clear", "min": [1914, 1, 1], "monthsFull": ["gener", "febrer", "mar\u00e7", "abril", "maig", "juny", "juliol", "agost", "setembre", "octubre", "novembre", "desembre"], "weekdaysShort": ["dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds."], "weekdaysFull": ["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"], "firstDay": 0, "selectYears": 200, "placeholder": "Enter date...", "today": "Avui"}, "time": {"placeholder": "Enter time...", "today": "Avui", "format": "h:i a"}}" style="display: none;">
</p>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img data-src="holder.js/900x500/auto/#777:#555/text:First slide" alt="First slide" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNTAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjUwMCIgZmlsbD0iIzc3NyI+PC9yZWN0Pjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjQ1MCIgeT0iMjUwIiBzdHlsZT0iZmlsbDojNTU1O2ZvbnQtd2VpZ2h0OmJvbGQ7Zm9udC1zaXplOjU2cHg7Zm9udC1mYW1pbHk6QXJpYWwsSGVsdmV0aWNhLHNhbnMtc2VyaWY7ZG9taW5hbnQtYmFzZWxpbmU6Y2VudHJhbCI+Rmlyc3Qgc2xpZGU8L3RleHQ+PC9zdmc+"> </div>
<div class="item">
<img data-src="holder.js/900x500/auto/#666:#444/text:Second slide" alt="Second slide" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNTAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjUwMCIgZmlsbD0iIzY2NiI+PC9yZWN0Pjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjQ1MCIgeT0iMjUwIiBzdHlsZT0iZmlsbDojNDQ0O2ZvbnQtd2VpZ2h0OmJvbGQ7Zm9udC1zaXplOjU2cHg7Zm9udC1mYW1pbHk6QXJpYWwsSGVsdmV0aWNhLHNhbnMtc2VyaWY7ZG9taW5hbnQtYmFzZWxpbmU6Y2VudHJhbCI+U2Vjb25kIHNsaWRlPC90ZXh0Pjwvc3ZnPg=="> </div>
<div class="item">
<img data-src="holder.js/900x500/auto/#555:#333/text:Third slide" alt="Third slide" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNTAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjUwMCIgZmlsbD0iIzU1NSI+PC9yZWN0Pjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjQ1MCIgeT0iMjUwIiBzdHlsZT0iZmlsbDojMzMzO2ZvbnQtd2VpZ2h0OmJvbGQ7Zm9udC1zaXplOjU2cHg7Zm9udC1mYW1pbHk6QXJpYWwsSGVsdmV0aWNhLHNhbnMtc2VyaWY7ZG9taW5hbnQtYmFzZWxpbmU6Y2VudHJhbCI+VGhpcmQgc2xpZGU8L3RleHQ+PC9zdmc+">
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<!--********** Start of peekaboo demo ***********-->
<div id="floatholder">
<div id="float">
<br />
<span> Float
<br /><br />
<a href="#"> test link </a>
</span>
</div>
This is bare text. <a href="#">Test link</a>
<div style="border: 3px solid #f00; background: #dde;">This is text inside a div.
<a href="#">Test link</a></div>
This is bare text. <a href="#">Test link</a>
<div style="border: 3px solid #0c0; background: #dde;">This is text inside a div.
<a href="#">Test link</a></div>
This is bare text. <a href="#">Test link</a>
<div style="border: 3px solid #00f; background: #dde;">This is text inside a div.
<a href="#">Test link</a></div>
This is bare text. <a href="#">Test link</a>
<div id="clear">Clearing div</div> <!--******* Note: a cleared <br> will not prevent bug *******-->
<div style="border: 3px solid #00f; background: #dde;">This div is after the cleared div. (purple box) If cleared div
does not touch float, bug is not triggered. <a href="#">Test link</a></div>
</div>
</div><!--/row-->
</div><!--/.container-->
</div>
<footer id="portal-footer-wrapper" role="contentinfo">
<div class="container-fluid" id="portal-footer">
<div class="portletWrapper" >
<section class="portlet portletClassic" id="portal-footer">
<div class="portletContent">
El
<a href="http://plone.org">Plone<sup>®</sup> Open Source CMS/WCM</a>
és <abbr title="Copyright">©</abbr> 2000-2014 de la
<a href="http://plone.org/foundation">Fundació Plone</a> i amics.
Distribuït sota la llicència
<a href="http://creativecommons.org/licenses/GPL/2.0/">Llicència GNU GPL</a>.
</div>
</section>
</div>
<div class="portletWrapper" >
<section class="portlet portletActions">
<ul class="portletContent">
<li class="portletItem odd first ">
<a href="#">
<span>Mapa del lloc</span>
</a>
</li>
<li class="portletItem even ">
<a href="#">
<span>Accessibilitat</span>
</a>
</li>
<li class="portletItem odd last">
<a href="index.html" class="pat-plone-modal" data-pat-plone-modal="{}">
<span>Contacte</span>
</a>
</li>
</ul>
</section>
</div>
<div class="portletWrapper">
<section class="portlet portletClassic" id="portal-colophon">
<div class="portletContent">
<a href="http://plone.org" target="_blank" title="Aquest lloc web s'ha desenvolupat amb Plone Open Source CMS/WCM.">Powered by Plone & Python</a>
</div>
</section>
</div>
</div>
</footer>
</body>
</html>