liquid_feedback_frontend
diff app/main/index/usage_terms.lua @ 1045:701a5cf6b067
Imported LiquidFeedback Frontend 3.0 branch
author | bsw |
---|---|
date | Thu Jul 10 01:19:48 2014 +0200 (2014-07-10) |
parents | b219676f1093 |
children | 2e5b303ea68e |
line diff
1.1 --- a/app/main/index/usage_terms.lua Thu Jul 10 01:02:43 2014 +0200 1.2 +++ b/app/main/index/usage_terms.lua Thu Jul 10 01:19:48 2014 +0200 1.3 @@ -1,8 +1,19 @@ 1.4 -slot.put("<br />") 1.5 +ui.title(_"Terms of use") 1.6 + 1.7 +ui.section( function() 1.8 + 1.9 + ui.sectionHead( function() 1.10 + ui.heading { level = 1, content = _"Terms of use" } 1.11 + end ) 1.12 + 1.13 + ui.sectionRow( function() 1.14 1.15 -ui.container{ 1.16 - attr = { class = "wiki use_terms" }, 1.17 - content = function() 1.18 - slot.put(format.wiki_text(config.use_terms)) 1.19 - end 1.20 -} 1.21 + ui.container{ 1.22 + attr = { class = "wiki use_terms" }, 1.23 + content = function() 1.24 + slot.put(config.use_terms) 1.25 + end 1.26 + } 1.27 + 1.28 + end ) 1.29 +end ) 1.30 \ No newline at end of file