diff options
Diffstat (limited to 'templates.mdwn')
-rw-r--r-- | templates.mdwn | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/templates.mdwn b/templates.mdwn index 33e02b9..4ac691b 100644 --- a/templates.mdwn +++ b/templates.mdwn @@ -1,69 +1,66 @@ [[if test="enabled(template)" -then="This wiki has templates **enabled**." -else="This wiki has templates **disabled**." +then="Denne wiki har skabeloner **aktiveret**." +else="Denne wiki har skabeloner **deaktiveret**." ]] -Templates are files that can be filled out and inserted into pages in the -wiki. +Skabeloner er filer som kan blive udfyldt og indsat på sider i wikien. [[if test="enabled(template) and enabled(inline)" then=""" -## Available templates +## Tilgængelige skabeloner -These templates are available for inclusion onto other pages in this -wiki: +Disse skabeloner er tilgængelige til indsættelse på andre sider i denne wiki: [[inline pages="templates/* and !*/discussion" feeds=no archive=yes sort=title template=titlepage]] """]] -## Using a template +## Brug af skabelon -Using a template works like this: +En skabelon bruges som her: - \[[template id=note text="""Here is the text to insert into my note."""]] + \[[template id=note text="""Her er teksten indsat indeni min note."""]] -This fills out the [[note]] template, filling in the `text` field with -the specified value, and inserts the result into the page. +Dette udfylder[[note]]-skabelonen, ved at erstatte `text`-feltet med den angivne +værdi, og indsætter resultatet på siden. -A value can include any markup that would be allowed in the wiki page -outside the template. Triple-quoting the value even allows quotes to be -included in it. Combined with multi-line quoted values, this allows for -large chunks of marked up text to be embedded into a template: +En værdi kan indeholde enhver opmærkning som ville være tilladt på wikisiden +udenfor skabelonen. Trippel-citering af værdien tillader endda at bruge citering +som del af værdien. Kombineret med flerlinje-citerede værdier tillader dette +indlejring af store klumper af opmærket tekst i skabelonen: - \[[template id=foo name="Sally" color="green" age=8 notes=""" - * \[[Charley]]'s sister. - * "I want to be an astronaut when I grow up." - * Really 8 and a half. + \[[template id=foo name="Sally" color="grøn" age=8 notes=""" + * \[[Charley]]'s søster. + * "Jeg vil være astronaut når jeg bliver stor." + * egentlig 8 og et halvt. """]] -## Creating a template +## Oprettelse af skabelon -To create a template, simply add a template directive to a page, and page will -provide a link that can be used to create the template. The template is a -regular wiki page, located in the `templates/` directory. +Opret en skabelon ved simpelthen at tilføje skabelon-direktivet til en side, så +vil siden vise en henvsining som kan bruges til at oprette skabelonen. +Skabelonen er en normal wikiside, placeret i `templates/`-mappen. -The template uses the syntax used by the +Skabelonen bruger samme syntax som perl-modulet [cpan HTML::Template](http://search.cpan.org/search?mode=dist&query=HTML::Template) -perl module, which allows for some fairly complex things to be done. -Consult its documentation for the full syntax, but all you really need to know -are a few things: +som åbner nogle ret komplekse muligheder. Læs dokumentationen omkring den fulde +syntaks, men alt hvad du i virkeligheden behøver at vide er nogle få ting: -* To insert the value of a variable, use `<TMPL_VAR variable>`. -* To make a block of text conditional on a variable being set use - `<TMPL_IF NAME="variable">text</TMPL_IF>`. -* To use one block of text if a variable is set and a second if it's not, - use `<TMPL_IF NAME="variable">text<TMPL_ELSE>other text</TMPL_IF>` +* Indsæt værdien af en variable med `<TMPL_VAR variabel>`. +* Gør en tekstblok betinget af at en variabel er i brug med + `<TMPL_IF NAME="variabel">tekst</TMPL_IF>`. +* Brug een tekstblok hvis en variabel er i brug, og en anden hvis ikke, med + `<TMPL_IF NAME="variabel">tekst<TMPL_ELSE>anden tekst</TMPL_IF>` -Here's a sample template: +Her er et eksempel på en skabelon: <span class="infobox"> Name: <TMPL_VAR name><br /> - Age: <TMPL_VAR age><br /> + Alder: <TMPL_VAR age><br /> <TMPL_IF NAME="color"> - Favorite color: <TMPL_VAR color><br /> + Favoritfarve: <TMPL_VAR color><br /> <TMPL_ELSE> - No favorite color.<br /> + Ingen favoritfarve.<br /> </TMPL_IF> <TMPL_IF NAME="notes"> <hr /> @@ -71,7 +68,10 @@ Here's a sample template: </TMPL_IF> </span> -The filled out template will be formatted the same as the rest of the page -that contains it, so you can include WikiLinks and all other forms of wiki -markup in the template. Note though that such WikiLinks will not show up as -backlinks to the page that uses the template. +(det anbefales at bruge engelske variabelnavne for at undgå problemer med æøå og +andre specialtegn) + +Den udfyldte skabelon vil blive formatteret som resten af siden den er +inkluderet i, så du kan medtage WikiLinks og alle andre former for wiki- +opmærkning i skabelonen. Bemærk dog at sådanne WikiLinks ikke vil dukke op som +krydshenvisninger (backlinks) til den side som anvender skabelonen. |