Added CMS_HOOK_RESPONSE_ALTER to give a last chance to alter the response before rendering. This hook should not be used, when there are other alternative hook that answer the need, but this is proposed for now, as a way to alter response by adding css, js url, ... Moved blog under official modules folder. Cleaned theme of demo example project. Renamed NODE_MODULE as CMS_NODE_MODULE.
18 lines
331 B
CSS
18 lines
331 B
CSS
ul.cms-nodes {
|
|
list-style-type: none;
|
|
padding: 3px 3px 3px 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
ul.cms-nodes li {
|
|
border-top: dotted 1px #ccc;
|
|
}
|
|
ul.cms-nodes li:first-child {
|
|
border-top: none;
|
|
}
|
|
ul.cms-nodes li.cms_type_page a::before {
|
|
content: "[page] ";
|
|
}
|
|
ul.cms-nodes li.cms_type_blog a::before {
|
|
content: "[blog] ";
|
|
}
|