summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/base.tmpl
blob: 78980773ee6ac78844d3637e47ec47bc7b113f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<%! page_type="topic" %>\
<?xml version="1.0"?>
<page id="${page_id}"
      type="${self.attr.page_type}"
      style="${page_kind}"
      xmlns="http://projectmallard.org/1.0/"
      xmlns:api="http://projectmallard.org/experimental/api/"
      xmlns:ui="http://projectmallard.org/1.0/ui/">
  <info>
    <%block name="info">
      ${formatter.format_xref(node.parent, type="guide", group=page_kind)}
    </%block>
  </info>
  <title><%block name="title">${formatter.format_page_name(node)}</%block></title>
  <%block name="synopsis">
  </%block>
  <%block name="doc">
    ${formatter.format(node, node.doc)}
  </%block>
  <%block name="since_version">
    % if node.version:
    <p>Since ${node.version}</p>
    % endif
  </%block>
  <%block name="details">
  </%block>
  <%block name="links">
  </%block>
</page>