<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bcdesign</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bcdesign"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Bcdesign"/>
	<updated>2026-05-15T16:20:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294452</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294452"/>
		<updated>2016-04-15T13:38:57Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De tweede lijn is de Document Type Declaration (DOCTYPE),deze verteld de browser en web crawlers welke versie...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
De tweede lijn is de [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]],deze verteld de browser en [[wikipedia:Web_crawler|web crawlers]] welke versie van html de pagina gebruikt. De &amp;quot;doctype&amp;quot; zoals hierboven beschreven is HTML5.Die goed samenwerkt met de laatste joomla versie .&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Basis CSS===&lt;br /&gt;
&lt;br /&gt;
Je kunt op deze manier basis css toevoegen:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen worden in een &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Categorie:Handleidingen]]&lt;br /&gt;
[[Categorie: Template ontwikkeling]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/6/nl&amp;diff=294451</id>
		<title>Translations:Creating a basic index file/6/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/6/nl&amp;diff=294451"/>
		<updated>2016-04-15T13:38:57Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De tweede lijn is de Document Type Declaration (DOCTYPE),deze verteld de browser en web crawlers welke versie...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;De tweede lijn is de [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]],deze verteld de browser en [[wikipedia:Web_crawler|web crawlers]] welke versie van html de pagina gebruikt. De &amp;quot;doctype&amp;quot; zoals hierboven beschreven is HTML5.Die goed samenwerkt met de laatste joomla versie .&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294348</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294348"/>
		<updated>2016-04-15T13:16:46Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Categorie:Handleidingen Categorie: Template ontwikkeling&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Basis CSS===&lt;br /&gt;
&lt;br /&gt;
Je kunt op deze manier basis css toevoegen:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen worden in een &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Categorie:Handleidingen]]&lt;br /&gt;
[[Categorie: Template ontwikkeling]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/24/nl&amp;diff=294347</id>
		<title>Translations:Creating a basic index file/24/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/24/nl&amp;diff=294347"/>
		<updated>2016-04-15T13:16:45Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Categorie:Handleidingen Categorie: Template ontwikkeling&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Categorie:Handleidingen]]&lt;br /&gt;
[[Categorie: Template ontwikkeling]]&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294327</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294327"/>
		<updated>2016-04-15T13:13:58Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Basis CSS===&lt;br /&gt;
&lt;br /&gt;
Je kunt op deze manier basis css toevoegen:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen worden in een &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/23/nl&amp;diff=294326</id>
		<title>Translations:Creating a basic index file/23/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/23/nl&amp;diff=294326"/>
		<updated>2016-04-15T13:13:57Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ieder bestand wat toegevoegd is moet in een regel in de templatedetails.xml van de template vermeld worden,behalve als het verwijst naar een sub-folder (die kan weer opgenomen worden in een &amp;lt;folder&amp;gt; element).&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294250</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294250"/>
		<updated>2016-04-15T13:01:24Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Je kunt op deze manier basis css toevoegen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Basis CSS===&lt;br /&gt;
&lt;br /&gt;
Je kunt op deze manier basis css toevoegen:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/22/nl&amp;diff=294249</id>
		<title>Translations:Creating a basic index file/22/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/22/nl&amp;diff=294249"/>
		<updated>2016-04-15T13:01:24Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Je kunt op deze manier basis css toevoegen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Je kunt op deze manier basis css toevoegen:&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294240</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294240"/>
		<updated>2016-04-15T13:00:47Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;===Basis CSS===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Basis CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/21/nl&amp;diff=294239</id>
		<title>Translations:Creating a basic index file/21/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/21/nl&amp;diff=294239"/>
		<updated>2016-04-15T13:00:47Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;===Basis CSS===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Basis CSS===&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294236</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294236"/>
		<updated>2016-04-15T13:00:12Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Hier is de template variabel vul de naam van de template in&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hier is de template variabel vul de naam van de template in&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/20/nl&amp;diff=294235</id>
		<title>Translations:Creating a basic index file/20/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/20/nl&amp;diff=294235"/>
		<updated>2016-04-15T13:00:12Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Hier is de template variabel vul de naam van de template in&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hier is de template variabel vul de naam van de template in&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294226</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294226"/>
		<updated>2016-04-15T12:59:16Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/19/nl&amp;diff=294225</id>
		<title>Translations:Creating a basic index file/19/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/19/nl&amp;diff=294225"/>
		<updated>2016-04-15T12:59:15Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Als je afbeeldingen wilt toevoegen aan de template kan je het op deze manier doen:&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294217</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294217"/>
		<updated>2016-04-15T12:58:12Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;=== Standaard Afbeeldingen ===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Standaard Afbeeldingen ===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/18/nl&amp;diff=294216</id>
		<title>Translations:Creating a basic index file/18/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/18/nl&amp;diff=294216"/>
		<updated>2016-04-15T12:58:11Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;=== Standaard Afbeeldingen ===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Standaard Afbeeldingen ===&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294213</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294213"/>
		<updated>2016-04-15T12:57:29Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Maak het af  - het laatste stukje&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Maak het af  - het laatste stukje&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom Images===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/17/nl&amp;diff=294212</id>
		<title>Translations:Creating a basic index file/17/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/17/nl&amp;diff=294212"/>
		<updated>2016-04-15T12:57:29Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Maak het af  - het laatste stukje&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maak het af  - het laatste stukje&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294193</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294193"/>
		<updated>2016-04-15T12:53:31Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Einde&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
Einde&lt;br /&gt;
Finish it off - one last bit:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom Images===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/16/nl&amp;diff=294192</id>
		<title>Translations:Creating a basic index file/16/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/16/nl&amp;diff=294192"/>
		<updated>2016-04-15T12:53:31Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Einde&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Einde&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294191</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294191"/>
		<updated>2016-04-15T12:53:10Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;br /&gt;
&lt;br /&gt;
=== End ===&lt;br /&gt;
Finish it off - one last bit:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom Images===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/15/nl&amp;diff=294190</id>
		<title>Translations:Creating a basic index file/15/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/15/nl&amp;diff=294190"/>
		<updated>2016-04-15T12:53:09Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Opmerking:Je kunt je eigen module regels overal waar je wilt in de body plaatsen,maar je moet de corresponderende regel ook toevoegen in de templatedetails.xml die in dezelfde folder als de index.php van je template staat.&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294080</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294080"/>
		<updated>2016-04-15T12:25:26Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template. &lt;br /&gt;
&lt;br /&gt;
Note: You can add your own module lines anywhere you want in the body, but you have to add a corresponding line to the templateDetails.xml file which sits alongside the index.php of your template.&lt;br /&gt;
&lt;br /&gt;
=== End ===&lt;br /&gt;
Finish it off - one last bit:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom Images===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/14/nl&amp;diff=294079</id>
		<title>Translations:Creating a basic index file/14/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/14/nl&amp;diff=294079"/>
		<updated>2016-04-15T12:25:25Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boven de lijn die zegt &amp;lt;code&amp;gt;naam=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; voegt een module positie toe genaamd &amp;quot;boven&amp;quot; en  het maakt joomla mogelijk  modules te plaatsen in deze sectie van de sjabloon. De &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; lijn bevat alle artikelen en de belangrijkste inhoud (eigenlijk is het [[S:MyLanguage/component/component]]) en dat is heel belangrijk. Het gaat naar  het midden  van de template.&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294004</id>
		<title>Creating a basic index file/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_index_file/nl&amp;diff=294004"/>
		<updated>2016-04-15T11:55:15Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Module posities&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Het &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; -bestand wordt de kern van elke pagina die Joomla! levert. In wezen, maak je een pagina (zoals een HTML-pagina), maar plaats je [[S:MyLanguage/PHP/PHP]] -code waar de inhoud van uw site moet komen. De template werkt door het toevoegen van Joomla code op de module posities en de component sectie van uw sjabloon. Als er iets wordt toegevoegd aan de template, wordt dir weergegeven op alle pagina&#039;s, tenzij het is toegevoegd aan een van deze secties via het Joomla CMS (of aangepaste code).&lt;br /&gt;
&lt;br /&gt;
Deze pagina toont de kale code klaar om te knippen en plakken in uw eigen ontwerp.&lt;br /&gt;
&lt;br /&gt;
===Begin===&lt;br /&gt;
&lt;br /&gt;
Een Joomla template begint met de volgende regels:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php defined( &#039;_JEXEC&#039; ) or die( &#039;Restricted access&#039; );?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &lt;br /&gt;
   xml:lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; lang=&amp;quot;&amp;lt;?php echo $this-&amp;gt;language; ?&amp;gt;&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
De eerste lijn stopt ondeugende mensen om naar uw code te kijken en slechte dingen te doen. &lt;br /&gt;
&lt;br /&gt;
The second line is the [[wikipedia:Document Type Declaration|Document Type Declaration (DOCTYPE)]], which tells the browser (and [[wikipedia:Web_crawler|web crawlers]]) which flavor of HTML the page is using. The doctype used above is [[wikipedia:HTML5|HTML5]], a newer version of HTML that is largely backwards compatible, but contains many new features. You should be aware that this will not work well in Internet Explorer 8 or earlier without a hack. You might want to investigate this situation and your clients&#039; wishes before deciding on which doctype you want to use. However this is used in Joomla {{JVer|3.0}} and higher.&lt;br /&gt;
&lt;br /&gt;
De derde regel begint ons HTML-document en beschrijft in welke taal de website is. Een html-document is verdeeld in twee delen, head en body. De head bevat de informatie over het document en de body zal website code bevatten waarmee u de lay-out definieert..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Kop===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/system.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/system/css/general.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/css/template.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De eerste regel geeft Joomla de juiste header-informatie. Dit is de pagina titel, meta-informatie, evenals JavaScript code. &lt;br /&gt;
De rest maakt twee links naar systeem style sheets en naar uw eigen opmaakmodel (als het genoemde &amp;lt;code&amp;gt;template.css&amp;lt;/code&amp;gt; en is staat in de &amp;lt;code&amp;gt;&amp;quot;css&amp;quot;&amp;lt;/code&amp;gt; map van uw template. Dus als uw template in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; staat, dan staan de css-bestanden in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/templates/my_template/css/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Body-Gedeelte===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt; &lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;bottom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ongelooflijk, dit is voldoende! Ja, het is een heel eenvoudige lay-out, maar het werkt. Alles wordt gedaan door Joomla!. Deze regels, meestal genoemd [[S:MyLanguage/jdoc verklaringen|jdoc staten]], vertellen Joomla wat toe te voegen aan de uitvoer van bepaalde onderdelen van het Joomla systeem. Opmerking: u moet ervoor zorgen dat uw menu is ingesteld op de module-positie &amp;quot;top&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Module posities&lt;br /&gt;
&lt;br /&gt;
Above, the line which says &amp;lt;code&amp;gt;name=&amp;quot;top&amp;quot;&amp;lt;/code&amp;gt; adds a module position called &#039;&#039;top&#039;&#039; and allows Joomla to place modules into this section of the template. The &amp;lt;code&amp;gt;type=&amp;quot;component&amp;quot;&amp;lt;/code&amp;gt; line contains all articles and main content (actually, the [[S:MyLanguage/component|component]]) and is very important. It goes in the centre of the template. &lt;br /&gt;
&lt;br /&gt;
Note: You can add your own module lines anywhere you want in the body, but you have to add a corresponding line to the templateDetails.xml file which sits alongside the index.php of your template.&lt;br /&gt;
&lt;br /&gt;
=== End ===&lt;br /&gt;
Finish it off - one last bit:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom Images===&lt;br /&gt;
If you want to add any images to the template you can do so like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl; ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template; ?&amp;gt;/images/myimage.png&amp;quot; alt=&amp;quot;Custom image&amp;quot; class=&amp;quot;customImage&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the template variable will fill in the name of your template.&lt;br /&gt;
&lt;br /&gt;
===Custom CSS===&lt;br /&gt;
&lt;br /&gt;
You can add custom css like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/templates/&amp;lt;?php echo $this-&amp;gt;template;?&amp;gt;/css/styles.css&amp;quot; type=&amp;quot;text/css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Every file which is added must have a line in the templateDetails.xml file for the template, unless it resides in a sub-folder (which can be included in a &amp;lt;folder&amp;gt; element).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/13/nl&amp;diff=294003</id>
		<title>Translations:Creating a basic index file/13/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Creating_a_basic_index_file/13/nl&amp;diff=294003"/>
		<updated>2016-04-15T11:55:14Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Module posities&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Module posities&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116202</id>
		<title>Chunk:Patch/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116202"/>
		<updated>2014-03-22T22:44:10Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De andere betekenis voor een patch bestand is een bestand dat is gemaakt door de source-code versie controle software bijvoorbeeld, subver...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;De term patch-bestand wordt gebruikt voor twee verschillende bestandstypen. De term patch bestand wordt soms gebruikt om te verwijzen naar het archiveren van bestanden waarmee u om te upgraden van een Joomla versie naar de andere (bijvoorbeeld van versie 1.0.0 versie 1.0.7). Deze upgrade-bestanden worden ook wel aangeduid als [[Upgrade Pakket upgrade pakketten]].&lt;br /&gt;
&lt;br /&gt;
De andere betekenis voor een patch bestand is een bestand dat is gemaakt door de source-code [[s:mylanguage/wp:Revision_control|versie controle software]] bijvoorbeeld, subversie van SVN, die wordt gebruikt voor de Joomla bron code. Dit type patch-bestand bevat instructies voor het wijzigen van de inhoud van een of meer van de broncode. De SVN software leest het patch bestand en kan dan automatisch de broncode van de bestanden herstellen.&lt;br /&gt;
&lt;br /&gt;
Patchbestanden worden gebruikt door de [[Bug Squad]] om voorgestelde bug fixes te testen. Ze kunnen ook gebruikt worden om bij te dragen aan voorgestelde nieuwe functies in de in ontwikkeling zijnde versie. Voor meer informatie over de structuur van de SVN patchbestanden, lees [[S:mylanguage/Learn more about patch files|Leer meer over patchbestanden]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/2/nl&amp;diff=116201</id>
		<title>Translations:Chunk:Patch/2/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/2/nl&amp;diff=116201"/>
		<updated>2014-03-22T22:44:09Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De andere betekenis voor een patch bestand is een bestand dat is gemaakt door de source-code versie controle software bijvoorbeeld, subver...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;De andere betekenis voor een patch bestand is een bestand dat is gemaakt door de source-code [[s:mylanguage/wp:Revision_control|versie controle software]] bijvoorbeeld, subversie van SVN, die wordt gebruikt voor de Joomla bron code. Dit type patch-bestand bevat instructies voor het wijzigen van de inhoud van een of meer van de broncode. De SVN software leest het patch bestand en kan dan automatisch de broncode van de bestanden herstellen.&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116184</id>
		<title>Chunk:Patch/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116184"/>
		<updated>2014-03-22T22:35:37Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De term patch-bestand wordt gebruikt voor twee verschillende bestandstypen. De term patch bestand wordt soms gebruikt om te verwijzen naar het archiveren van bestanden waarmee...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;De term patch-bestand wordt gebruikt voor twee verschillende bestandstypen. De term patch bestand wordt soms gebruikt om te verwijzen naar het archiveren van bestanden waarmee u om te upgraden van een Joomla versie naar de andere (bijvoorbeeld van versie 1.0.0 versie 1.0.7). Deze upgrade-bestanden worden ook wel aangeduid als [[Upgrade Pakket upgrade pakketten]].&lt;br /&gt;
&lt;br /&gt;
The other meaning for a patch file is a file created by source code [[wp:Revision_control|version control software]] -- for example, Subversion or SVN, which is used for the Joomla! source code. This type of patch file contains instructions for changing the contents of one or more source code files. The SVN software reads the patch file and then can automatically change the source code of the files being patched.&lt;br /&gt;
&lt;br /&gt;
Patchbestanden worden gebruikt door de [[Bug Squad]] om voorgestelde bug fixes te testen. Ze kunnen ook gebruikt worden om bij te dragen aan voorgestelde nieuwe functies in de in ontwikkeling zijnde versie. Voor meer informatie over de structuur van de SVN patchbestanden, lees [[S:mylanguage/Learn more about patch files|Leer meer over patchbestanden]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/1/nl&amp;diff=116183</id>
		<title>Translations:Chunk:Patch/1/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/1/nl&amp;diff=116183"/>
		<updated>2014-03-22T22:35:37Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;De term patch-bestand wordt gebruikt voor twee verschillende bestandstypen. De term patch bestand wordt soms gebruikt om te verwijzen naar het archiveren van bestanden waarmee...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;De term patch-bestand wordt gebruikt voor twee verschillende bestandstypen. De term patch bestand wordt soms gebruikt om te verwijzen naar het archiveren van bestanden waarmee u om te upgraden van een Joomla versie naar de andere (bijvoorbeeld van versie 1.0.0 versie 1.0.7). Deze upgrade-bestanden worden ook wel aangeduid als [[Upgrade Pakket upgrade pakketten]].&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116174</id>
		<title>Chunk:Patch/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/nl&amp;diff=116174"/>
		<updated>2014-03-22T22:31:16Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Patch&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The term patch file is used for two different file types. The term patch file is sometimes used to refer to archive files that allow you to upgrade from one Joomla! version to another (for example, from version 1.0.0 to version 1.0.7). These upgrade files are also referred to as [[Chunk:Upgrade Package|upgrade packages]].&lt;br /&gt;
&lt;br /&gt;
The other meaning for a patch file is a file created by source code [[wp:Revision_control|version control software]] -- for example, Subversion or SVN, which is used for the Joomla! source code. This type of patch file contains instructions for changing the contents of one or more source code files. The SVN software reads the patch file and then can automatically change the source code of the files being patched.&lt;br /&gt;
&lt;br /&gt;
Patch files are used by the [[Bug Squad]] to test proposed bug fixes. They can also be used to contribute proposed new features to the version under development. For more information about the structure of SVN patch files, read [[Learn more about patch files]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/Page_display_title/nl&amp;diff=116173</id>
		<title>Translations:Chunk:Patch/Page display title/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/Page_display_title/nl&amp;diff=116173"/>
		<updated>2014-03-22T22:31:16Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Patch&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patch&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Jdoc_statement/nl&amp;diff=116161</id>
		<title>Chunk:Jdoc statement/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Jdoc_statement/nl&amp;diff=116161"/>
		<updated>2014-03-22T22:19:06Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Jdoc statements zijn opgenomen in elke Joomla  Template en geeft aan waar de uitvoer van andere onderdelen van Joomla of zijn extensies worden geplaatst in de algemene webpagi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jdoc statements zijn opgenomen in elke Joomla  Template en geeft aan waar de uitvoer van andere onderdelen van Joomla of zijn extensies worden geplaatst in de algemene webpagina.Een typische Jdoc statement ziet er als volgt uit: &amp;lt;code&amp;gt;&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; Zie de [[jdoc statements|jdocstatements article]] voor meer informatie.&amp;lt;noinclude&amp;gt;[[Category:Glossery definitions/nl|{{pagename}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Jdoc_statement/1/nl&amp;diff=116160</id>
		<title>Translations:Chunk:Jdoc statement/1/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Jdoc_statement/1/nl&amp;diff=116160"/>
		<updated>2014-03-22T22:19:06Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Jdoc statements zijn opgenomen in elke Joomla  Template en geeft aan waar de uitvoer van andere onderdelen van Joomla of zijn extensies worden geplaatst in de algemene webpagi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jdoc statements zijn opgenomen in elke Joomla  Template en geeft aan waar de uitvoer van andere onderdelen van Joomla of zijn extensies worden geplaatst in de algemene webpagina.Een typische Jdoc statement ziet er als volgt uit: &amp;lt;code&amp;gt;&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; Zie de [[jdoc statements|jdocstatements article]] voor meer informatie.&amp;lt;noinclude&amp;gt;[[Category:Glossery definitions/nl|{{pagename}}]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Jdoc_statement/nl&amp;diff=116131</id>
		<title>Chunk:Jdoc statement/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Jdoc_statement/nl&amp;diff=116131"/>
		<updated>2014-03-22T21:50:30Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Jdoc statement&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;jdoc statements are included in every Joomla [[Template|template]] and indicate where the output from other parts of Joomla or its extensions should be positioned in the overall web page.  A typical jdoc statement looks like this: &amp;lt;code&amp;gt;&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; See the [[jdoc statements|jdoc statements article]] for more information.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Jdoc_statement/Page_display_title/nl&amp;diff=116130</id>
		<title>Translations:Chunk:Jdoc statement/Page display title/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Jdoc_statement/Page_display_title/nl&amp;diff=116130"/>
		<updated>2014-03-22T21:50:29Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: Created page with &amp;quot;Jdoc statement&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jdoc statement&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=JDOC:Documentation_Translators&amp;diff=116117</id>
		<title>JDOC:Documentation Translators</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=JDOC:Documentation_Translators&amp;diff=116117"/>
		<updated>2014-03-22T21:34:24Z</updated>

		<summary type="html">&lt;p&gt;Bcdesign: /* nl - Nederlands - Dutch */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here, people &#039;&#039;&#039;translating&#039;&#039;&#039; {{SITENAME}} can sign up as a translator. A [[JDOC:Translation Administrators|Translation Administrator]] will assign your username translator permissions. After your username is added as a translator, you can get started translating! &lt;br /&gt;
&lt;br /&gt;
{{tip|text=Dear translators! Please [[Special:TranslatorSignup|register for translator notifications about your language]]. You are placed on a list to receive notices about new/updated pages that need translation.|title=A Tip for Translators}}&lt;br /&gt;
&lt;br /&gt;
== Required Reading ==&lt;br /&gt;
* Getting started, read [[JDOC:Page Translation Quickstart Guide|Page Translation Quickstart Guide]]&lt;br /&gt;
* Detailed explanation of translating, [[JDOC:Page Translation Explained|Page Translation Explained]].&lt;br /&gt;
* Our [[JDOC:Language policy|Language policy]]&lt;br /&gt;
* Having an [[JDOC:Translation Questions|issue or need help]]?&lt;br /&gt;
&lt;br /&gt;
===Add Your Username===&lt;br /&gt;
Add your username below under a language you want to translate and you will be added to the [[Special:ListUsers/translator|Translator user group]].&lt;br /&gt;
&lt;br /&gt;
===Add Your Language===&lt;br /&gt;
If your language isn&#039;t listed below, please add it using the format:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;lang code&amp;gt; - Localised language name - English language name &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Use the syntax, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;* {{User|YourUsername}}&amp;lt;/nowiki&amp;gt; - requested&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a Translation Administrator adds you as a translator, they will remove the &amp;quot;- requested&amp;quot; from your username.&lt;br /&gt;
&lt;br /&gt;
==Current Translations Teams==&lt;br /&gt;
&lt;br /&gt;
Documentation language codes are different from Joomla! language codes, the ISO 639-1 2 letter code. A small quantity of 4 letter language codes are used as an exception, but their language codes are all lowercase.&lt;br /&gt;
&lt;br /&gt;
=== bg - Български - Bulgarian ===&lt;br /&gt;
* {{User|Mastwd}}&lt;br /&gt;
&lt;br /&gt;
=== ca - Català - Catalan === &lt;br /&gt;
* {{User|Johnnydement}}&lt;br /&gt;
* {{User|el_libre}}&lt;br /&gt;
&lt;br /&gt;
=== da - Dansk - Danish ===&lt;br /&gt;
* {{User|rbuelund}}&lt;br /&gt;
&lt;br /&gt;
=== de - Deutsch - German ===&lt;br /&gt;
* {{User|Sisko1990}}&lt;br /&gt;
&lt;br /&gt;
=== es - Español - Spanish ===&lt;br /&gt;
* {{User|isidrobaq}}&lt;br /&gt;
* {{User|ivanramosnet}}&lt;br /&gt;
* {{User|Willin}}&lt;br /&gt;
* {{User|viena}}&lt;br /&gt;
* {{User|Javiparati}}&lt;br /&gt;
* {{User|Crsanchez}}&lt;br /&gt;
* {{User|Irene.lopez}}&lt;br /&gt;
* {{User|pfvidal}}&lt;br /&gt;
* {{User|VictorYork87}}&lt;br /&gt;
* {{User|netandsoftware}}&lt;br /&gt;
&lt;br /&gt;
=== fa - فارسی - Persian ===&lt;br /&gt;
* {{User|mhehm}}&lt;br /&gt;
* {{User|Grand}}&lt;br /&gt;
&lt;br /&gt;
=== fr - Français - French ===&lt;br /&gt;
* {{User|Opware2000}}&lt;br /&gt;
* {{User|MATsxm}}&lt;br /&gt;
* {{User|Simon}}&lt;br /&gt;
* {{User|Sandra97}}&lt;br /&gt;
&lt;br /&gt;
=== hu - Magyar - Hungarian ===&lt;br /&gt;
* {{User|Balazs}}&lt;br /&gt;
&lt;br /&gt;
=== id - Bahasa Indonesia - Indonesian ===&lt;br /&gt;
* {{User|sikumbang}}&lt;br /&gt;
&lt;br /&gt;
=== ja - 日本語 - Japanese ===&lt;br /&gt;
* {{User|Nori}}&lt;br /&gt;
* {{User|Yama}}&lt;br /&gt;
* {{User|Richell}}&lt;br /&gt;
&lt;br /&gt;
=== nl - Nederlands - Dutch ===&lt;br /&gt;
* {{User|MartijnM}}&lt;br /&gt;
* {{User|Marnix}}&lt;br /&gt;
* {{User|Grubosoft}}&lt;br /&gt;
* {{User|slibbe}}&lt;br /&gt;
* {{User|Arkomat}} requested&lt;br /&gt;
* {{User|bcdesign}} requested&lt;br /&gt;
&lt;br /&gt;
=== pt - Português - Portuguese ===&lt;br /&gt;
* {{User|Horus_68}}&lt;br /&gt;
&lt;br /&gt;
=== pt-br - Português do Brasil - Brazilian Portuguese ===&lt;br /&gt;
* {{User|Ariadnepinheiro}}&lt;br /&gt;
* {{User|Airton}}&lt;br /&gt;
&lt;br /&gt;
=== ru - Русский - Russian ===&lt;br /&gt;
* {{User|AlexSmirnov}}&lt;br /&gt;
&lt;br /&gt;
=== sw - Kiswahili - Swahili ===&lt;br /&gt;
* {{User|Ayeko}}&lt;br /&gt;
&lt;br /&gt;
=== tr - Türkçe - Turkish ===&lt;br /&gt;
* {{User|Umitkenan}}&lt;br /&gt;
&lt;br /&gt;
=== vi - Tiếng Việt - Vietnamese ===&lt;br /&gt;
* {{User|huyhoa}}&lt;br /&gt;
&lt;br /&gt;
==Translation administrators==&lt;br /&gt;
&lt;br /&gt;
The responsibilities of a Translation administrator will require a bit more attention to docs. Translation administrators should feel comfortable with using wiki markup, but there is no need to an expert. At the very least, checking documentation every few days and perform any required tasks. Ideally, we should have at one Translation administrator who will not be tied to any specific language. Then perhaps one Translation administrator for active language teams. [[JDOC_talk:Documentation Translators|Volunteer as a Translation administrator here]].&lt;br /&gt;
&lt;br /&gt;
===Current Volunteer Translation Administrators===&lt;br /&gt;
{{:Special:ListUsers/translationadmins}}&lt;br /&gt;
&lt;br /&gt;
==Common Language Codes==&lt;br /&gt;
&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt;ar - عربي - Arabic&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; bg - Български - Bulgarian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; bn - বাংলা - Bengali&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; bo - བོད་ཡིག - tibetan&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ca - Català - Catalan&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ce - Nohçi - Chechen&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; da - Dansk - Danish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; de - Deutsch - German&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; es - Español - Spanish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; fa - فارسی - Persian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; fr - Français - French&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; hu - Magyar - Hungarian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; hy - Հայերեն - Armenian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; id - Bahasa Indonesia - Indonesian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; is - Íslenska - Icelandic&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; it - Italiano - Italian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ja - 日本語 - Japanese&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ko - 한국어 - Korean&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; lb - Lëtzebuergesch - Luxembourgish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; min - Baso Minangkabau - Minang&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ml - liviox alvax - Malayalam&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; mr - मराठी - Marathi&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ms - Bahasa Melayu - Malay&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; nl - Nederlands - Dutch&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; pl - Polski - Polish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; pt - Português - Portuguese&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; pt-br - Português do Brasil - Brazilian Portuguese&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ro - Română - Romanian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ru - Русский - Russian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; sl - Slovenščina - Slovenianjtökók&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; sq - Shqip - Albanian&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; sv - Svenska - Swedish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; sw - Kiswahili - Swahili&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; ta - தமிழ் - Tamil&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; tr - Türkçe - Turkish&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; vi - Tiếng Việt - Vietnamese&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;small-4 columns&amp;quot;&amp;gt; zh 中文 Chinese&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Category:Documentation Wiki Policies and Guidelines]]&lt;br /&gt;
[[Category:Documentation Translation]]&lt;/div&gt;</summary>
		<author><name>Bcdesign</name></author>
	</entry>
</feed>