DokuWiki

It's better when it's simple

User Tools

Site Tools


template:starter

This is an old revision of the document!


Starter Template

Compatible with DokuWiki

"Ponder Stibbons"

template The template that gets you started

Last updated on
2014-05-19
Repository
Source

This extension has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues.

Similar to benjamin, twigstarter

Tagged with discussion, sidebar, simple, start, userpage

The Starter Template is designed to be the starting point of your custom template. It has a lot of inline comments in the code which should explain many things. It focuses less on design, but more on maintainability.

It is done in a way which lets you worry less about DokuWiki's core styles. Instead you only need to care about the five main styles:

  • basic.css: You probably only want to touch this if you'd like to change general font sizes and font stacks.
  • structure.css: You probably only want to touch this if you'd like to change the general structure of the site (to 3 columns or have different widths or make everything fluid or switch the sidebar to the right, etc).
  • design.css: Here you can style all the bits that surround the page content.
  • content.css: Here you can style all of the page content.
  • mobile.css: Here you can style all of the changes for mobile devices and smaller screens.

You can find further advice on How to create an easily maintainable DokuWiki template written by Andreas Haerter (based on a former blog post by Michael Klier).

Refer to Template Development documentation for general information.

Download and Install

Refer to template on how to install and use templates in Dokuwiki.

Configuration

These are in [theme root]/starter/conf/default.php. It can be changed from the Configuration panel.

config option description default value
userPage User page (@USER@ is replace by the corresponding user name) user:@USER@
discussionPage Discussion page (@ID@ is replaced by the corresponding page ID) discussion:@ID@
hideTools hide editing and other tools when not logged in 0

Event hooks

Since 2013-11-18 the following three event hooks are supported:

The items can be accessed via $event->data['items'].

More Info

To Do

  • improve print styles

Credits

  • Thanks to Andreas Gohr for general advice.
  • Thanks to Clarence Lee for his design advice, especially concerning typography.

Changes

If you are a template author using this template as a base for your own, you might want to check out the list of detailed changes.

Demo

Templates based on Starter

Comments

  • clear and useful! great!
  • thank you, this template is very clean and useful for most cases! love this :)
  • Very nice stuff.

How to translate this theme?

There are two files to translate:

  • lang/en/lang.php is for everything you see on the frontend (although the “accessibility headlines” are hidden for most users). This file is the most important to translate.
  • lang/en/settings.php is for the configuration admin. This file is not as important as the other, as it will only be seen by the admin(s).

You can either send me language files to update by email or post them here or in the bugtracker. Please have a look at the available translations first.

How to insert a logo image instead of text?

Open the template's main.php and search for “logo”. It's explained in there.

CSS bug w/ zoom plugin

An image included with the zoom plugin will scroll over the footer and hide it

I cannot reproduce this. Do you have any more specific information? (Browser, other installed plugins, etc?) — Anika Henke 2011/05/02 16:45

Tools hidden - can't login

In the template config, I selected «hide editing and other tools when not logged in» and then I logged out. But now I can't log in as there is no «Login» button/link showing.

Am I missing something? — Nactus 2011-11-10

You probably need to save/remember the login URL (you can get it just by adding ?do=login to any DokuWiki URL). In fact I use the following bookmarklet:
javascript:window.location=window.location+"?do=login"

(I'm assuming the use of webserver rewriting) —Antonio Bueno 2011/11/11 21:40

That sounds like a good idea! Thanks — Nactus 2011-11-13

in line 31 of tpl_functions

tpl_pagelink($backID, $backTitle); 

returns

discussion:home

for the page ID when the link is built. The issue is not with the _tpl_discussion function as replacing $backID with 'home' produces the same problem.

A fix is:

tpl_pagelink(':'.$backID, $backTitle);
Thanks. That's fixed since today's release. — Anika Henke 2014-05-19 03:24
template/starter.1400462770.txt.gz · Last modified: 2014-05-19 03:26 by ach

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki