source: other-projects/nightly-tasks/diffcol/trunk/model-collect/Customization/macros/extra.dm@ 31417

Last change on this file since 31417 was 28020, checked in by ak19, 11 years ago

Adding the Customization model tutorial collection

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1# extra.dm file
2# You can add collection specific macros in here
3# Lines starting with a '#' are comments.
4# Remember to include the package declaration
5
6package Style
7
8# will be applied to all pages
9# add css style lines inside the style tags
10_collectionspecificstyle_ {
11<style type="text/css">
12</style>
13}
14
15# add any javascript functions here
16_collectionspecificscript_ {
17}
18
19package about
20
21_pagefooterextra_ {Collection generated by Me.}
22
23_textabout_ {
24<div class="section">
25<h3>Very Interesting Reports Collection.</h3>
26_Global:collectionextra_
27</div>
28}
29
30package Style
31
32_footer_ {
33_pagefooterextra_ <center><small>Copyright 2010 My Awesome Digital Library</small></center> _endspacer__htmlfooter_
34}
35
36_collectionspecificstyle_ {
37<style type="text/css">
38/*clear the use of a background image */
39body.bgimage \{ background-image: none; \}
40/* set the background color to pink */
41body.bgimage \{ background: #E6F0E8; \}
42/* clear the background image for the navigation bar, and set its color to red */
43div.navbar \{ background-image: none; background-color: #94c29c; \}
44a.navlink \{ background-image: none; background-color: #94c29c; \}
45/* clear the background image for the divider bars, and set their color to red */
46div.divbar \{ background-image: none; background-color: #94c29c; \}
47</style>
48}
49
50_cssheader_ {
51<link rel="stylesheet" href="_httpcstyle_/style-blue.css" type="text/css"
52 title="Blue Style" charset="UTF-8">
53}
54
Note: See TracBrowser for help on using the repository browser.