liquid_feedback_frontend

view app/main/_filter_view/34_stylesheet.lua @ 1082:8fc0efee260f

Added tag v3.0.2 for changeset 86073b9999dc
author jbe
date Wed Jul 23 22:46:55 2014 +0200 (2014-07-23)
parents effce9b361b2
children 32cc544d5a5b
line source
1 local value
2 if app.session.member then
3 local setting_key = "liquidfeedback_frontend_stylesheet_url"
4 local setting = Setting:by_pk(app.session.member.id, setting_key)
5 value = setting and setting.value
6 end
8 if value then
9 slot.put_into("stylesheet_url", value)
10 else
11 slot.put_into("stylesheet_url", request.get_relative_baseurl() .. "static/lf3.css")
12 end
14 execute.inner()
16 if config.footer_html then
17 slot.put_into("footer", config.footer_html)
18 end

Impressum / About Us