Wiki source code of CSS Layout

Version 3.4 by Lucas Charpentier (Sereza7) on 2024/02/20

Show last authors
1 The layout of a page is composed of several parts (header, body, footer...). Each part is related to a CSS style with its own size, color, images and so on. This document shows you how a XWiki page is roughly divided. This layout is based on the view action of a standard page. Some actions and pages will have their own variations adding or removing some elements.
2
3 == {{version since='16.0.0'}} ==
4
5 {{velocity}}
6 #set($layoutContent = '<html>
7 <head>
8 </head>
9 <body id="body" class="viewbody">
10 <div id="xwikimaincontainer">
11 <div id="xwikimaincontainerinner">
12 <div id="menuview">
13 <header class="navbar navbar-default actionmenu">
14 <div class="container-fluid">
15 <div class="navbar-header">
16 Leftmost part of the navbar
17 <div id="companylogo">
18 Company logo.
19 </div>
20 </div>
21
22 <div id="xwikimainmenu">
23 Everything in the navbar after the logo
24
25 <ul class="nav navbar-nav navbar-left">
26 Navbar items next to the logo. By default, this is empty.
27 </ul>
28
29 <ul class="nav navbar-nav navbar-right">
30 Navbar items in the top right corner, ordered from right to left.
31 This also contains the node with the drawer.
32 </ul>
33 </div>
34 </div>
35 </header>
36 </div>
37
38 <div id="headerglobal">
39 Still exists for backwards compatibility, but empty on a default flavor.
40 Used to contain Company logo and login/register links .
41 </div>
42
43 <div id="actionmenu" class="layoutsubsection">
44 Action bar with Edit, Show, Print, Delete
45 </div>
46
47 <div id="contentcontainer" class="content">
48 <div id="contentcontainerinner">
49 <div class="leftsidecolumns">
50 <div id="contentcolumn">
51 <div class="main">
52 Central column with the main content
53 <nav id="hierarchy_breadcrumb">
54 <ol id="hierarchy">
55 Contains the breadcumb that leads to this page.
56 </ol>
57 </nav>
58 <main id="mainContentArea" class="xcontent">
59 <div class="row document-header">
60 Document level header, between the breadcrumb and main content.
61 <section class="document-info">
62 Leftside, set of important information about the document.
63 <div id="document-title">Document title as the H1 of the page. </div>
64 <div id="xdocLastModification">Info on last modification of the doc </div>
65 </section>
66 <nav class="document-menu">
67 <div id="contentmenu" class="actionmenu">
68 Menu to use most features in relation to the content of a page.
69 <div id="tmEdit">Action link to edit the page</div>
70 <div id="tmCreate">Action link to create a child page</div>
71 <div id="tmMoreActions">Dropdown menu with various actions related to the page. </div>
72 </div>
73 </nav>
74 </div>
75 <div class="row">
76 <div id="xwikicontent">
77 Content of the XWiki page, main body.
78 </div>
79 </div>
80 </main>
81 <aside id="xdocFooter">
82 <div class="like-container">Contains the like displayer-button.</div>
83 <div id="xdocTags">Contains the tags associated to the page.</div>
84 <div id="xdocAuthors">
85 <div class="xdocCreation">Contains info relative to the page creation.</div>
86 </div>
87 </aside>
88 <aside id="xwikidata">
89 Tabs with advanced information and features: comments, attachments, history, information, ...
90 </aside>
91 </div>
92 </div>
93
94 <div id="leftPanels" class="panels left">
95 Left column containing the panels
96 </div>
97 </div>
98
99 <div id="rightPanels" class="panels right">
100 Right column containing the panels
101 </div>
102 </div>
103 </div>
104
105 <footer id="footerglobal">
106 Footer where you generally have the XWiki version and so on
107 <div id="xwikilicence"></div>
108 <div id="xwikiplatformversion"></div>
109 </footer>
110 </div>
111 </div>
112 Here are contained most of the "floating" elements of the UI, such as modals and dialog. They are hidden by default and only activated on specific interactions.
113 <body>
114 </html>')
115
116 #set( $ids = $regextool($layoutContent,'id=\"(.*?)\"'))
117 #set( $classes = $regextool($layoutContent,'class=\"(.*?)\"'))
118
119 {{code language="html"}}
120
121 {{/code}}
122 $layoutContent
123 {{/velocity}}
124
125
126
127
128
129 * On the {{code}}body{{/code}} element, a number of classes are added that give information on the user preference, page state and wiki parameters. Those are used to provide conditional styling on the whole UI with only native CSS. {{todo}} Create a page that lists those classes. {{/todo}}
130
131 {{todo}}Create a table populated by a regex query that lists all id and classes defined in this layout.{{/todo}}
132
133 == {{version before='16.0.0'}} ==
134
135 {{code language="html"}}
136 <html>
137 <head>
138 </head>
139 <body id="body" class="viewbody">
140 <div id="xwikimaincontainer">
141 <div id="xwikimaincontainerinner">
142
143 <div id="headerglobal" class="layoutsection">
144 Company logo and login/register links
145 </div>
146
147 <div id="headerspace" class="layoutsection">
148 This is where you have the path of the page. eg.
149 XWiki: Administration > Preferences
150 </div>
151
152 <div id="actionmenu" class="layoutsubsection">
153 Action bar with Edit, Show, Print, Delete
154 </div>
155
156 <div id="contentcontainer" class="content">
157 <div id="contentcontainerinner">
158
159 <div class="leftsidecolumns">
160 <div id="contentcolumn">
161 Central column with the main content
162
163 <div id="xwikicontent">
164 Body
165 </div>
166
167 <div id="about">
168 Something like "Version 1.2 last modified by XYZ on 23/04/2007 at 13:46"
169 </div>
170
171 <div id="xwikidata">
172 <div id="commentscontent">
173 This is the area where you can add/edit comments
174 </div>
175 <div id="attachmentscontent">
176 This is the area where you can attach files
177 </div>
178 </div>
179 </div>
180
181 <div id="leftPanels" class="panels left">
182 Left column containing the panels
183 </div>
184 </div>
185
186 <div id="rightPanels" class="panels right">
187 Right column containing the panels
188 </div>
189
190 </div>
191 </div>
192
193 <div id="footerglobal" class="layoutsection">
194 Footer where you generally have the XWiki version and so on
195 </div>
196 </div>
197 </div>
198 <body>
199 </html>
200 {{/code}}

Get Connected