summaryrefslogtreecommitdiff
path: root/lupin/artikkel.lua
blob: 3ad2f4d17a1e6029bf31aee63bba135b5c20c580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local artikkel = blueprint("default")

function artikkel.env(data)
  data.bilde = os.getenv("POST_bilde")
  data.publisert = os.getenv("POST_publisert")
end

function artikkel.form(body, data)
  html.p()
  html.label("Overskrift:")
  html.text('title', data.title, 32)
  html.orz('bilde', data.bilde or '')
  html.p()
  html.textarea('tekst', body)
end

return artikkel