summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/mallard-base.tmpl
blob: 07eb446834bee112982807d7abe772e5e6a780c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%! page_type="topic" %>\
<?xml version="1.0"?>
<page id="${page_id}"
      type="${self.attr.page_type}"
      style="${page_style}"
      xmlns="http://projectmallard.org/1.0/"
      xmlns:api="http://projectmallard.org/experimental/api/"
      xmlns:ui="http://projectmallard.org/experimental/ui/">
  <info>
    <%block name="info">
      <link type="guide" xref="index"/>
    </%block>
  </info>
  <title><%block name="title">${formatter.format_page_name(node)}</%block></title>
  <%block name="content">
    ${formatter.format(node, node.doc)}
  </%block>
  <%def name="since_version()">
    % if node.version:
    <p>Since ${node.version}</p>
    % endif
  </%def>
</page>