summary refs log tree commit diff stats
path: root/tests/accept/compile/ttempl.nim
blob: 2c4785325a024d647bd209fc67908b84f5dce454 (plain) (blame)
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
# Test the new template file mechanism

import
  os, times

include "sunset.tmpl"

const
  tabs = [["home", "index"],
          ["news", "news"],
          ["documentation", "documentation"],
          ["download", "download"],
          ["FAQ", "question"],
          ["links", "links"]]


var i = 0
for item in items(tabs): 
  var content = $i
  var file: TFile
  if open(file, changeFileExt(item[1], "html"), fmWrite): 
    write(file, sunsetTemplate(current=item[1], ticker="", content=content,
                               tabs=tabs))
    close(file)
  else:
    write(stdout, "cannot open file for writing")
  inc(i)