summaryrefslogtreecommitdiff
path: root/templates/example/planet.xml
blob: ea5d306e4deb791db1e56afcdba8f1d0077465aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<planet name="{{ globals.name }}">

  <manager name="{{ globals.name }}">
  </manager>

  <atmosphere>
{% for name, component in atmosphere.items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
  </atmosphere>

  <flow name="{{ globals.name }}">
{% for name, component in flow.items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
  </flow>

</planet>