{% set htmlParameters = {
		'isStyleguide' : true,
		'bodyClass': 'styleguide ',
		'rootPath' : '../',
		'pageName' : 'styleguide general',
		'specificStyleguide': ''
	}
%}

{% include "general/_includes/_html_head.njk" %}

<div class="js-scroll-nav">



	<!-- CONTENT ///////////////////////////////////////////////////// -->


	<section class="styleguide">
		<div class="styleguide__container">
			<main>


				<!-- INTRO //////////////////////////////////////// -->


				<h1 class="styleguide__title js-scroll-nav__title">{{ CONFIG.PROJECT_TITLE}} Styleguide</h1><br/>
				<h5>version: {{VERSION_INFO.current_version}}</h5>
				<p class="styleguide__p">
					Welcome to the {{PROJECT_TITLE}} styleguide – an internal guide &amp; code repository for designing
					and coding projects for {{PROJECT_TITLE}}. If you're new here, have a look through some of the topics
					on the left.
				</p>
				<br/>
				<h5>USEFUL LINKS TO READ:</h5>
				<br/>
				<ul>
					<li>
						<a href="http://bradfrost.com/blog/post/atomic-web-design/" target="_blank">Atomic WebDesign</a>
					</li>
					<li>
						<a href="http://csswizardry.com/2015/08/bemit-taking-the-bem-naming-convention-a-step-further/" target="_blank">BEMIT: Taking the BEM Naming Convention a Step Further</a>
					</li>
					<li>
						<a href="http://csswizardry.com/2016/05/the-importance-of-important/" target="_blank">The Importance of !important: Forcing Immutability in CSS</a>
					</li>
				</ul>

			</main>
		</div>
	</section>

	<!-- QUARKS ////////////////////////////////////////// -->
	<h1 class="styleguide__section-title js-scroll-nav__title">Quarks</h1>


	<section class="styleguide">
		<div class="styleguide__container">
			<main>

				<!-- GLOBALS ////////////////////////////////////////// -->


				{% include "general/quarks/globals.njk" %}

				<!-- COLORS ////////////////////////////////////////// -->


				{% include "general/quarks/colors.njk" %}

				<!-- TYPOGRAPHY ////////////////////////////////////// -->


				<h1 class="styleguide__title js-scroll-nav__sub-title">Typography</h1>
				<small>/sass/styleguide/general/_quarks/_typography.scss</small>


				<h4 class="styleguide__sub-title">Reading experience</h4>
				<p class="styleguide__p">
					Typography is the atomic element of good interface design as it defines branding,
					layout, composition &amp; rhythm. Note that it's not just about choosing the right
					typeface, it's also about tone of voice, microcopy. Head over to
					<a href="https://www.ibm.com/design/language/resources" title="IBM Design Language" target="_blank">IBM Design Language</a>
					for an in-depth overview on the elements of typography.
					<br /><br />
					Good reading experiences have the right amount of characters per line.
					If a line is too long users will have a hard time focusing, if a line
					is too short the eye will have to travel back too often, breaking the
					reader's rhythm. An optimal line length is <a href="http://baymard.com/blog/line-length-readability/" title="Readability: the optimal line length" target="_blank">50-75 characters</a>,
					which is about 10-12 words or <a href="http://www.maxdesign.com.au/articles/em/" title="Ideal line length for content" target="_blank">25-33 &times; base font-size (1em)</a>.
					To <a href="http://johndjameson.com/blog/guidelines-for-letterspacing-type" title="Guidelines for letter-spacing typography" target="_blank">increase readability</a> of typographic elements, default letter-spacing
					values for headings &amp; small text are adjusted.
				</p>

				<h4 class="styleguide__sub-title">Font stack</h4>
				<p> Base font-size: 16px </p>
				<small class="styleguide__info">Sans-serif: Flanders Art Sans Regular</small>
				<h2 class="flandersRegular">Good design is good business</h2>

				<small class="styleguide__info">Flanders Art Sans Medium</small>
				<h2 class="flandersMedium">Good design is good business</h2>

				<small class="styleguide__info"> Flanders Art Sans Light</small>
				<h2 class="flandersLight">Good design is good business</h2>

				<hr />

				<small class="styleguide__info">&lt;h1&gt; - Flanders Art Sans Medium (700) - 33px - line-height: 1.2727</small>
				<h1>Good design is good business</h1>

				<small class="styleguide__info">&lt;h2&gt; - Flanders Art Sans Light (300) - 26px - line-height: 1.38</small>
				<h2>Good design is always obvious, while great design is always transparent</h2>

				<small class="styleguide__info">&lt;h3&gt; - Flanders Art Sans Light (300) - 20px - line-height: 1.5</small>
				<h3>While everything is designed, only few things are designed to excell</h3>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<h1>Heading 1</h1>
						<h2>Heading 2</h2>
						<h3>Heading 3</h3>
					</code>
				</div>

				<hr />

				<small class="styleguide__info">&lt;h4&gt; - Flanders Art Sans Medium (500) - 18px - line-height: 1.5</small>
				<h4>Content is king and should always precede design. Design in the absence of content is not design, but decoration.</h4>

				<small class="styleguide__info">&lt;p&gt; - Flanders Art Sans Regular - 16px - line-height: 1.625</small>
				<p>Many desperate acts of design (e.g. gradients, drop shadows, and the gratuitous use of transparency) are perpetuated in the absence of a strong concept. Good ideas provide a framework for design, guiding the work.</p>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<h4>Heading 4</h4>
						<p>Paragraph</p>
					</code>
				</div>

				<hr />

				<small class="styleguide__info">&lt;h5&gt; - Flanders Art Sans Medium (500) - 18px - line-height: 1.5</small>
				<h5>Online design trends change more often than the wind and slightly less often than my socks. Good design is timeless, good design creates culture. Culture shapes value and value determinates the future.</h5>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<h5>Heading 5</h5>
					</code>
				</div>

				<hr />

				<small class="styleguide__info">&lt;h6&gt; - Flanders Art Sans Medium (500) - 16px - line-height: 1.5</small>
				<h6>Always design a thing by considering it in its next larger context - a chair in a room, a room in a house, a house in an environment, an environment in a city plan.</h6>

				<small class="styleguide__info">&lt;small&gt; - Flanders Art Sans Regular - 14px - line-height: 1.857</small>
				<small>People think that design is styling. Design is not style. It's not about giving shape to the shell and not giving a damn about the guts. Good design is a renaissance attitude that combines technology, cognitive science, human need, and beauty to produce something that the world didn't know it was missing.</small>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<h6>Heading 6</h6>
						<small>Small text</small>
					</code>
				</div>

				<hr />

				<small class="styleguide__info">
					&lt;blockquote&gt; - Flanders Art Sans Light (100) - 26px - line-height: 1.25<br />
					&lt;cite&gt; - Flanders Art Sans Regular - 14px - line-height: 1.857<!-- - letter-spacing: 0.01em -->
				</small>

				<blockquote>
					Great design will not sell an inferior product,
					but it will enable great products to achieve
					their maximum potential.
					<cite>Thomas J. Watson Jr.</cite>
				</blockquote>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<blockquote>
							Good design will not sell an inferior product...
							<cite>Thomas J. Watson Jr.</cite>
						</blockquote>
					</code>
				</div>

				<hr />

				<small class="styleguide__info">Hyperlinks: &lt;a href=""&gt;, &lt;span class="is-hyperlink"&gt;</small>
				<a href="#" title="#">This is a hyperlink</a><br />
				<span class="is-hyperlink">This looks like a hyperlink</span>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<a href="#" title="Always provide a title">Hyperlink</a>
						<span class="is-hyperlink">This looks like a hyperlink</span>
					</code>
				</div>

				<small class="styleguide__info">Strong: &lt;strong&gt;</small>
				<strong>This text is strong</strong><br />

				<small class="styleguide__info">Emphasized: &lt;em&gt;</small>
				<em>This text is emphasized</em><br />

				<small class="styleguide__info">Quotes: &lt;q&gt;</small>
				<q>This text is quoted</q><br />

				<small class="styleguide__info">Highlighted: &lt;mark&gt;</small>
				<mark>This text is highlighted</mark><br />

				<small class="styleguide__info">Obsolete/deleted/updated: &lt;del&gt;</small>
				<del>This text is obsolete/deleted/updated</del>

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<strong>This text is strong</strong>
						<em>This text is emphasized</em>
						<q>This text is quoted</q>
						<mark>This text is highlighted</mark>
						<del>This text is obsolete/deleted/updated</del>
					</code>
				</div>

				<!-- ICONS /////////////////////////////////////////// -->


				<h1 class="styleguide__title js-scroll-nav__sub-title">Icons</h1>
				<small>/sass/styleguides/general/_quarks/_icons.scss</small>


				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					The icon-set is converted with a custom Gulp iconfont-task. To add/remove icons from the generated font,
					please contact <a href="mailto:jan@litlemissrobot.com" title="Little Miss Robot">Little Miss Robot</a>
					or use an online service like IcoMoon. Warning: using an online service could break stuff!
				</p>

				{% include "general/quarks/icons.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<span class="icon-[name]"></span>
					</code>
				</div>
			</main>
		</div>
	</section>

	<!-- UTILS ////////////////////////////////////////// -->
	<h1 class="styleguide__section-title js-scroll-nav__title">Utilities</h1>

	<section class="styleguide">
		<div class="styleguide__container">
			<main>

				<h1 class="styleguide__title js-scroll-nav__sub-title">Grid system</h1>
				<small>/sass/styleguides/general/utils/_grid.scss</small>

				<h4 class="styleguide__sub-title">Columns</h4>
				<p class="styleguide__p">
					Basic grid classes for layout purposes, has no extra margins &amp;
					paddings applied to items and will work with anything (class based).<br/><br/>
					Optionally the grid system can be extended to include default margins which can be used
					in general, multi-column page layouts. Add the <em>.u-grid--with-margins</em>
					class to the wrapping container for this to work.
				</p>


				{% include "general/utils/grid.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/utils/grid.njk" %}
					</code>
				</div>

				<h1 class="styleguide__title js-scroll-nav__sub-title">Table Layout</h1>
				<small>/sass/styleguide/general/utils/_table-layout.scss</small>

				<p class="styleguide__p">
					The table-layout utility makes it easy to display any kind of content as a row of table-cells.
					These table-cells will adapt their size to make sure they're allways covering the enitre width of the row.
					If the content exceeds the size of the table-cell, it wil just break to a new line.
				</p>
				<ul>
					<li>
						<b>.u-table-layout</b>: this has to be put on a wrapper elements that is a direct parent of the elements you want to turn into table-cells.
					</li>
					<li>
						<b>.u-table-layout__main</b> (optional): this can be used to specify the most important element, which will allways take up as much space as possible, disregarding its content.
					</li>
				</ul>
				<br/><br/>

				{% include "general/utils/table-layout.njk" %}

				<div class="styleguide__highlight-box">
					<code>
						&lt;div class=&quot;u-table-layout&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&lt;&#x2F;div&gt;<br/>
						<br/>
						&lt;div class=&quot;u-table-layout&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;u-table-layout__main&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&lt;&#x2F;div&gt;<br/>
						<br/>
						&lt;div class=&quot;u-table-layout&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;a-button-group&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot; class=&quot;a-button&quot;&gt;example&lt;&#x2F;a&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&lt;&#x2F;div&gt;<br/>
						<br/>
					</code>
				</div>


				<h1 class="styleguide__title js-scroll-nav__sub-title">Vertical Center</h1>
				<small>/sass/styleguide/general/utils/_vertical-center.scss</small>

				<p class="styleguide__p">
					By appling <b>.u-vertical-center</b> to an element you can easily center its content vertically.<br/>
				</p>

				{% include "general/utils/vertical-center.njk" %}

				<div class="styleguide__highlight-box">
					<code>
						&lt;div class=&quot;u-vertical-center&quot;&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block<br/>
						&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
						&lt;&#x2F;div&gt;<br/>
					</code>
				</div>

				<h1 class="styleguide__title js-scroll-nav__sub-title">Responsive helper classes</h1>
				<small>/sass/styleguide/general/utils/_responsive.scss</small>

				<p class="styleguide__p">
					We provide a few basic classes to show &amp; certain parts of a page on various screens-sizes:
				</p>
				<ul>
					<li>
						<b>.u-hidden-on-mobile</b>
					</li>
					<li>
						<b>.u-hidden-on-tablet-and-up</b>
					</li>
					<li>
						<b>.u-hidden-on-tablet-and-down</b>
					</li>
				</ul>

				<h1 class="styleguide__title js-scroll-nav__sub-title">Padding</h1>
				<small>/sass/styleguide/general/utils/_padding.scss</small>

				<p class="styleguide__p">
					To guarantee a consistent padding throughout the project, we make use of the following classes
				</p>

				<ul>
					<li>
						<b>.u-padding</b>
					</li>
					<li>
						<b>.u-padding--vertical</b>
					</li>
					<li>
						<b>.u-padding--horizontal</b>
					</li>
				</ul>

			</main>
		</div>



	</section>



	<!-- ATOMS ////////////////////////////////////////// -->
	<h1 class="styleguide__section-title js-scroll-nav__title">Atoms</h1>

	<section class="styleguide">
		<div class="styleguide__container">
			<main>



				<!-- BUTTONS ///////////////////////////////////////// -->


				<h1 id="buttons" class="styleguide__title js-scroll-nav__sub-title">Buttons</h1>
				<small>/sass/styleguide/general/atoms/_buttons.scss</small>


				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					Use &lt;a&gt; for navigation, &lt;button&gt; for everything else.
					Submit/reset buttons are the only exceptions, using &lt;input[type="submit"]&gt;
					to trigger default browser behaviour associated with submitting form input.
					Buttons should follow a typographic scale, based on importance and base font-size.
				</p>

				<small class="styleguide__info">Primary buttons: &lt;button class="button{{-color}}"&gt;</small>

				{% include "general/atoms/buttons/general.njk" %}

				<!-- SECONDARY BUTTONS /////////////////////////////////// -->

				<h4 class="styleguide__sub-title">Secondary buttons</h4>
				<p class="styleguide__p">
					Buttons for in-line interactions, as used in toolbars (eg. close, add, remove, ...)
				</p>

				{% include "general/atoms/buttons/outline.njk" %}

				<!-- LABELS /////////////////////////////////////////// -->
				<h1 class="styleguide__title js-scroll-nav__sub-title">Labels</h1>
				<small>/sass/styleguide/general/atoms/_labels.scss</small>

				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					Labels can be used to show content belongs to different categories, or tags.
				</p>

				{% include "general/atoms/labels.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/atoms/labels.njk" %}
					</code>
				</div>

				<!-- TAGS /////////////////////////////////////////// -->
				<h1 class="styleguide__title js-scroll-nav__sub-title">Tags</h1>
				<small>/sass/styleguide/general/atoms/_tags.scss</small>

				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					Tags are used to group defined terms.
				</p>

				{% include "general/atoms/tags.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/atoms/tags.njk" %}
					</code>
				</div>

				<!-- LISTS /////////////////////////////////////////// -->

				<h1 class="styleguide__title js-scroll-nav__sub-title">Lists</h1>
				<small>/sass/styleguide/general/_lists.scss</small>


				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					By default lists are not included in base/_normalize.scss.
					Each class extending the default (e.g. inline-list) must handle
					the reset in itself. Usually this means resetting the padding-left
					value and adjust the list-style property.
				</p>

				<ul>
					<li>Sed ut perspiciatis unde omnis</li>
					<li>Sed ut perspiciatis unde omnis</li>
					<li>Label for nested list items
						<ul>
							<li>Nested list items</li>
							<li>Nested list items</li>
							<li>Nested list items</li>
						</ul>
					</li>
				</ul>

				<br />

				<ol>
					<li>Sed ut perspiciatis unde omnis</li>
					<li>Sed ut perspiciatis unde omnis</li>
					<li>Label for nested list items
						<ul>
							<li>Nested list items</li>
							<li>Nested list items</li>
							<li>Nested list items</li>
						</ul>
					</li>
				</ol>

				<h1 class="styleguide__title js-scroll-nav__sub-title">Inline Lists</h1>
				<small>/sass/styleguide/general/_lists.scss</small>

				{% include "general/atoms/lists.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<ul class="a-inline-list">
							<li>List item</li>
							<li>List item</li>
							<li>List item</li>
						</ul>
					</code>
				</div>


				<!-- TABLES /////////////////////////////////////////// -->

				<h1 class="styleguide__title js-scroll-nav__sub-title">Tables</h1>

				<h4 class="styleguide__sub-title">General principle</h4>
				<p class="styleguide__p">
					Tables are, like, you know... tables? Use them for tabular data, but not for layout.
				</p>


				{% include "general/atoms/tables.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/atoms/tables.njk" %}
					</code>
				</div>

				<!-- FORMS /////////////////////////////////////////// -->

				<h1 class="styleguide__title">Forms Elements</h1>


				<h4 class="styleguide__sub-title">General principle</h4>
				<p class="styleguide__p">
					Each input field should have a label and inform users about the kind of
					input they need to provide. This info-text switches functionality during
					the user flow: information becomes inline validation/immediate feedback.
					The tone of voice should be human and add personality to the experience/brand.
				</p>

				<h4 class="styleguide__sub-title">Implementation</h4>
				<p class="styleguide__p">
					Every form should have an action- and method-attribute. To encourage default
					browser behaviour, the submit button should be added as input[type=submit].
					Every input should have a label with corresponding for-, id- and name-attributes.
					Labels are always placed before inputs, nesting is not allowed (except for
					checkboxes and radio's).
				</p>



				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Default inputs</h4>
				<small>/sass/styleguide/general/atoms/form-elements/general.scss</small>
				<br/><br/>
				{% include "general/atoms/form-elements/general.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-input">
							<label for="input-text">Text input</label>
							<div class="a-input__field-holder">
								<input type="text" placeholder="Placeholder" />
							</div>
							<small>Tell the user what kind of input is expected, add a <a href="#" title="">clickthrough as needed</a></small>
						</div>
					</code>
				</div>


				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Textarea</h4>
				<small>/sass/styleguide/general/atoms/form-elements/general.scss</small>
				<br/><br/>

				{% include "general/atoms/form-elements/textarea.njk" %}


				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-input">
							<label for="input-textarea">Remarks</label>
							<div class="a-input__field-holder">
								<textarea placeholder="Your message"></textarea>
							</div>
							<small>Feedback, suggestions, ideas, ... we would love to hear from you!</small>
						</div>
					</code>
				</div>

				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Select</h4>
				<small>/sass/styleguide/general/atoms/form-elements/select.scss</small>
				<br/><br/>

				{% include "general/atoms/form-elements/select.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-input">
							<label for="input-select">Default select</label>
							<div class="a-input__field-holder">
								<select name="input-selected" id="input-select">
									<option value="" disabled selected>Make your selection...</option>
									<option value="1">Option 1</option>
									<option value="2">Option 2</option>
									<option value="3">Option 3</option>
									<option value="4" disabled>Option 4 disabled</option>
									<option value="5">Option 5</option>
								</select>
								<span class="icon-arrow-down"></span>
							</div>
						</div>
					</code>
				</div>

				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Upload</h4>
				<small>/sass/styleguide/general/atoms/form-elements/upload.scss</small>
				<p class="styleguide__p">
					By default upload fields aren't easy to style in a specific look&amp; feel.
					The trick is to use a hidden field to display input value and some additional
					javascript to make this work.<br /><br />
					<em>
						Note: Javascript functionality in the source code is just a prototype
						(not present in production /js/main.js). The actual submit/upload
						functionality is also not implemented.
					</em>
				</p>

				{% include "general/atoms/form-elements/upload.njk" %}


				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-input a-input--with-button a-input--upload">
							<label for="input-upload">Upload</label>
							<div class="a-input__field-holder">

								<input type="text" name="input-upload-placeholder" id="input-upload-placeholder" placeholder="Select your file" />
								<input type="file" name="input-upload" id="input-upload" />
								<input type="submit" class="a-button" value="Upload" />

							</div>
							<small>Tell the user what kind of input is expected, add a <a href="#" title="">clickthrough as needed</a></small>
						</div>
						<script>
							$(".a-input--upload input[type='file']").change(function(){
								$(this).parent().find("input[type='text']").val($(this).val());
							});
						</script>
					</code>
				</div>



				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Range slider</h4>
				<small>/sass/styleguide/general/atoms/form-elements/range.scss</small>
				<p class="styleguide__p">
					By default range sliders aren't easy to style in a specific look&amp; feel.
					In order to get it working, some additional javascript is needed. Changing
					the slider value will reveal a tooltip with the actual value.<br /><br />
				</p>

				{% include "general/atoms/form-elements/range.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-input a-input--range">
							<label for="input-range">Range slider</label>
							<div class="a-input__field-holder">
								<input type="range" name="input-range" min="1" max="100" step="1" value="0" />
								<span class="a-input--range__background"></span>
							 <span class="a-input--range__background a-input--range__value">
							 <span class="a-tooltip a-tooltip--up a-input--range__tooltip"></span>
							 </span>
							</div>
						</div>
					</code>
				</div>


				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Date picker</h4>
				<small>/sass/styleguide/general/atoms/form-elements/date-picker.scss</small>
				<p class="styleguide__p">
					Using the <a href="https://github.com/dbushell/Pikaday" title="View on github" target="_blank">Pikaday Datepicker plugin</a>,
					which is lightweight &amp; has no dependencies. Styling of the plugin is embedded
					in the generated CSS (simply add the javascript &amp; confire as shown below).<br /><br />
					<em>
						Note: Javascript functionality in the source code is just a prototype
						(not present in production /js/main.js).
					</em>
				</p>

				{% include "general/atoms/form-elements/date.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/atoms/form-elements/date.njk" %}
					</code>
				</div>



				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Toggles</h4>
				<small>/sass/styleguide/general/atoms/form-elements/toggle.scss</small>
				<p class="styleguide__p">
					Toggles (radiobuttons, checkboxes &amp; switches ) are wrapped inside a label to enable the default browser behaviour.
				</p>


				{% include "general/atoms/form-elements/toggle.njk" %}





				<!-- FEEDBACK //////////////////////////////////////// -->


				<h1 class="styleguide__title">User Feedback</h1>


				<h4 class="styleguide__sub-title">General principle</h4>
				<p class="styleguide__p">
					Always provide feedback on user interaction. This can be immediate
					(eg. inline validation) or after the action (eg. submit a form).
					Feedback messages are informative and provide an easy escape or
					alternative/following action. The tone of voice should be human
					and add personality to the experience/brand.
				</p>

				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Alerts</h4>
				<small>/sass/styleguide/general/atoms/alerts.scss</small>

				{% include "general/atoms/alerts.njk" %}


				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<div class="a-alert">
							<p class="icon-alert">
								This is a <a href="#" title="">feedback message</a>.
							</p>
						</div>

						<div class="a-alert is-error">
							<p class="icon-alert">
								Something went wrong, please <a href="#" title="">try again</a>.
							</p>
						</div>

						<div class="a-alert is-warning">
							<p class="icon-alert">
								Perhaps you meant <a href="#" title="">something else</a>.
							</p>
						</div>

						<div class="a-alert is-success">
							<p class="icon-checkmark">
								Now how about <a href="#" title="">adding some more</a>.
							</p>
						</div>

						<div class="a-alert is-information">
							<p class="icon-alert">
								<a href="#" title="">Some features</a> might not work.
							</p>
						</div>
					</code>
				</div>

				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Tooltips</h4>
				<small>/sass/styleguide/general/atoms/tooltips.scss</small>

				<p class="styleguide__p">
					Use tooltips to display inline information or validation feedback.
					Just like default alerts, different styling can be applied (error,
					warning, success and information). Although tooltips will work with
					any typographic style, the use of &lt;small&gt; is adviced.
				</p>

				{% include "general/atoms/tooltips.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						<small class="a-tooltip a-tooltip--up">
							Tooltip with <a href="#" title="">hyperlink</a>
						</small>
						<small class="a-tooltip a-tooltip--up is-error">Tooltip</small>
						<small class="a-tooltip a-tooltip--up is-warning">Tooltip</small>
						<small class="a-tooltip a-tooltip--up is-success">Tooltip</small>
						<small class="a-tooltip a-tooltip--up is-information">Tooltip</small>

						<small class="a-tooltip a-tooltip--right">
							Tooltip with <a href="#" title="">hyperlink</a>
						</small>
						<small class="a-tooltip a-tooltip--right is-error">Tooltip</small>
						<small class="a-tooltip a-tooltip--right is-warning">Tooltip</small>
						<small class="a-tooltip a-tooltip--right is-success">Tooltip</small>
						<small class="a-tooltip a-tooltip--right is-information">Tooltip</small>

						<small class="a-tooltip a-tooltip--down">
							Tooltip with <a href="#" title="">hyperlink</a>
						</small>
						<small class="a-tooltip a-tooltip--down is-error">Tooltip</small>
						<small class="a-tooltip a-tooltip--down is-warning">Tooltip</small>
						<small class="a-tooltip a-tooltip--down is-success">Tooltip</small>
						<small class="a-tooltip a-tooltip--down is-information">Tooltip</small>

						<small class="a-tooltip a-tooltip--left">
							Tooltip with <a href="#" title="">hyperlink</a>
						</small>
						<small class="a-tooltip a-tooltip--left is-error">Tooltip</small>
						<small class="a-tooltip a-tooltip--left is-warning">Tooltip</small>
						<small class="a-tooltip a-tooltip--left is-success">Tooltip</small>
						<small class="a-tooltip a-tooltip--left is-information">Tooltip</small>
					</code>
				</div>



				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Inline validation</h4>
				<small>/sass/styleguide/general/atoms/form-elements/general.scss</small>
				<p class="styleguide__p">
					Always provide immediate/inline feedback on user interaction.
					Feedback messages are informative and provide an easy escape or
					alternative/following action. The tone of voice should be human
					and add personality to the experience/brand.
				</p>



				{% include "general/atoms/form-elements/inline-validation.njk" %}



				<h4 class="styleguide__sub-title js-scroll-nav__sub-title">Loader</h4>
				<small>/sass/styleguide/general/atoms/_loader.scss</small>
				<p class="styleguide__p">
					Place this element in the DOM to display a spinning loader.
				</p>

				{% include "general/atoms/loader.njk" %}

				<div class="styleguide__highlight-box">
					<code class="js-encode-html prettyprint">
						{% include "general/atoms/loader.njk" %}
					</code>
				</div>

				<!--

							<h1 class="styleguide__title js-scroll-nav__sub-title">Tables</h1>
							<small>/sass/base/_tables.scss</small>


							<p>
								Table data should always be clear and relevant for any given context.
								Therefor we limit the amount of columns: some fixed columns (containing
								an identifier and the most relevant data property) and some dynamic
								columns (with selects to display other properties).
							</p><br/><br/>

							<table>
								<tr>
									<th class="is-empty"></th>
									<th>Fixed label</th>
									<th class="has-no-padding">
										<div class="input">
											<div>
												<select name="input-select-0" id="input-select-0" class="has-no-value">
													<option value="" disabled selected>-- Select --</option>
													<option value="1">Option 1</option>
													<option value="2">Option 2</option>
													<option value="3">Option 3</option>
													<option value="4" disabled>Option 4 disabled</option>
													<option value="5">Option 5</option>
												</select>
												<span class="icon-arrow-down"></span>
												</div>
										</div>
									</th>
								</tr>
								<tr>
									<td>Identifier: <b>35 000</b>/kwh</td>
									<td>
										<div class="input">
											<label for="input-unit">Input with unit</label>
											<div>
												<input type="input" name="input-unit" id="input-unit" placeholder="bv. 8000" />
												<span class="unit">KWh</span>
											</div>
										</div>
									</td>
									<td>
										<div class="input text-right">
											<label for="input-text">Text input</label>
											<div>
												<input type="text" name="input-text" id="input-text" placeholder="Placeholder" />
											</div>
										</div>
									</td>
								</tr>
								<tr>
									<td>Identifier</td>
									<td>Property</td>
									<td>
										<div class="input text-pink">
											<label for="input-text">Text input</label>
											<div>
												<input type="text" name="input-text" id="input-text" placeholder="Placeholder" />
											</div>
										</div>
									</td>
								</tr>
								<tr>
									<td>Identifier</td>
									<td>Property</td>
									<td>
										<div class="input">
											<label for="input-text">Text input</label>
											<div>
												<input type="text" name="input-text" id="input-text" placeholder="Placeholder" />
											</div>
										</div>
									</td>
								</tr>
							</table>

							<div class="styleguide__highlight-box">
								<code>
									&lt;table&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;th class=&quot;is-empty&quot;&gt;&lt;&#x2F;th&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;th&gt;Fixed label&lt;&#x2F;th&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;th class=&quot;has-no-padding&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;input&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;select name=&quot;input-select-0&quot; id=&quot;input-select-0&quot; class=&quot;has-no-value&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;&quot; disabled selected&gt;-- Select --&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;1&quot;&gt;Option 1&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;2&quot;&gt;Option 2&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;3&quot;&gt;Option 3&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;4&quot; disabled&gt;Option 4 disabled&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;5&quot;&gt;Option 5&lt;&#x2F;option&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;select&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class=&quot;icon-arrow-down&quot;&gt;&lt;&#x2F;span&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;th&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Identifier: &lt;b&gt;35 000&lt;&#x2F;b&gt;&#x2F;kwh&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;input&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;label for=&quot;input-unit&quot;&gt;Input with unit&lt;&#x2F;label&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type=&quot;input&quot; name=&quot;input-unit&quot; id=&quot;input-unit&quot; placeholder=&quot;bv. 8000&quot; &#x2F;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class=&quot;unit&quot;&gt;KWh&lt;&#x2F;span&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;input text-right&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;label for=&quot;input-text&quot;&gt;Text input&lt;&#x2F;label&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type=&quot;text&quot; name=&quot;input-text&quot; id=&quot;input-text&quot; placeholder=&quot;Placeholder&quot; &#x2F;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Identifier&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Property&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;input text-pink&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;label for=&quot;input-text&quot;&gt;Text input&lt;&#x2F;label&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type=&quot;text&quot; name=&quot;input-text&quot; id=&quot;input-text&quot; placeholder=&quot;Placeholder&quot; &#x2F;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Identifier&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Property&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;input&quot;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;label for=&quot;input-text&quot;&gt;Text input&lt;&#x2F;label&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type=&quot;text&quot; name=&quot;input-text&quot; id=&quot;input-text&quot; placeholder=&quot;Placeholder&quot; &#x2F;&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;div&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;td&gt;<br/>
									&nbsp;&nbsp;&nbsp;&nbsp;&lt;&#x2F;tr&gt;<br/>
									&lt;&#x2F;table&gt;<br/>
								</code>
							</div>
				-->
			</main>
		</div>
	</section>
</div>
{% include "general/_includes/_html_footer.njk" %}
