clarion/app/views/layouts/application.html.slim

22 lines
530 B
Plaintext
Raw Normal View History

2015-05-30 19:00:44 +03:00
doctype html
html
head
meta charset="utf-8"
meta http-equiv="X-UA-Compatible" content="IE=edge"
meta name="viewport" content="width=device-width, initial-scale=1"
title
- if content_for? :title
=> content_for :title
| | Clarion
- else
| Clarion
2024-04-14 00:31:52 +03:00
= stylesheet_link_tag "management/application", nopush: false
2015-05-30 19:00:44 +03:00
= csrf_meta_tags
body
main
= render 'layouts/management/flash'
== yield
2024-04-14 00:31:52 +03:00
= javascript_include_tag "management/application", nopush: false