Safe Haskell | None |
---|---|
Language | Haskell98 |
- staticSite :: IO Static
- fonts_glyphicons_halflings_regular_svg :: StaticRoute
- fonts_glyphicons_halflings_regular_ttf :: StaticRoute
- fonts_glyphicons_halflings_regular_eot :: StaticRoute
- fonts_glyphicons_halflings_regular_woff :: StaticRoute
- js_jquery_flot_pie_js :: StaticRoute
- js_jquery_flot_stack_js :: StaticRoute
- js_jquery_flot_symbol_js :: StaticRoute
- js_jquery_flot_fillbetween_min_js :: StaticRoute
- js_jquery_url_js :: StaticRoute
- js_jquery_flot_navigate_js :: StaticRoute
- js_jquery_flot_errorbars_js :: StaticRoute
- js_jquery_flot_crosshair_min_js :: StaticRoute
- js_jquery_flot_canvas_min_js :: StaticRoute
- js_jquery_flot_pie_min_js :: StaticRoute
- js_jquery_flot_min_js :: StaticRoute
- js_jquery_colorhelpers_min_js :: StaticRoute
- js_jquery_flot_tooltip_js :: StaticRoute
- js_jquery_flot_time_min_js :: StaticRoute
- js_typeahead_bundle_js :: StaticRoute
- js_jquery_min_js :: StaticRoute
- js_jquery_flot_resize_min_js :: StaticRoute
- js_jquery_flot_selection_min_js :: StaticRoute
- js_bootstrap_min_js :: StaticRoute
- js_jquery_flot_crosshair_js :: StaticRoute
- js_jquery_flot_selection_js :: StaticRoute
- js_bootstrap_js :: StaticRoute
- js_jquery_flot_symbol_min_js :: StaticRoute
- js_jquery_flot_resize_js :: StaticRoute
- js_jquery_flot_navigate_min_js :: StaticRoute
- js_jquery_flot_threshold_min_js :: StaticRoute
- js_typeahead_bundle_min_js :: StaticRoute
- js_jquery_flot_tooltip_min_js :: StaticRoute
- js_jquery_flot_fillbetween_js :: StaticRoute
- js_jquery_hotkeys_js :: StaticRoute
- js_jquery_flot_threshold_js :: StaticRoute
- js_jquery_flot_js :: StaticRoute
- js_jquery_flot_categories_min_js :: StaticRoute
- js_jquery_colorhelpers_js :: StaticRoute
- js_jquery_flot_time_js :: StaticRoute
- js_excanvas_min_js :: StaticRoute
- js_excanvas_js :: StaticRoute
- js_jquery_flot_image_min_js :: StaticRoute
- js_jquery_flot_stack_min_js :: StaticRoute
- js_jquery_cookie_js :: StaticRoute
- js_jquery_flot_image_js :: StaticRoute
- js_jquery_flot_canvas_js :: StaticRoute
- js_jquery_flot_errorbars_min_js :: StaticRoute
- js_jquery_flot_categories_js :: StaticRoute
- css_bootstrap_css :: StaticRoute
- css_bootstrap_css_map :: StaticRoute
- css_bootstrap_theme_css_map :: StaticRoute
- css_bootstrap_theme_min_css :: StaticRoute
- css_bootstrap_theme_css :: StaticRoute
- css_bootstrap_min_css :: StaticRoute
- hledger_css :: StaticRoute
- hledger_js :: StaticRoute
Documentation
staticSite :: IO Static Source
use this to create your static file serving site staticSite :: IO Static.Static staticSite = if development then Static.staticDevel staticDir else Static.static staticDir
| This generates easy references to files in the static directory at compile time, giving you compile-time verification that referenced files exist. Warning: any files added to your static directory during run-time can't be accessed this way. You'll have to use their FilePath or URL to access them. $(staticFiles Settings.staticDir)