-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (128 loc) · 4.72 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html itemscope>
<head>
<meta charset="utf-8">
<!-- Name of your theme -->
<title>Columnizer Base</title>
<!--
Dummy content parameters
-->
<!-- dummyImageCategory: specify search term for images to pull from 500px -->
<meta itemprop="dummyImageCategory" content="All">
<!-- dummyContentLength: specify how much dummy text appears within each asset -->
<!-- Value can be set to short, medium or long -->
<meta itemprop="dummyContentLength" content="medium">
<!--
Default background images
The image's actual width & height must be set
Position values: c, nw, ne, sw, se
Style values: fill, tile, fixed
Average color can be computed by opening an image in Photoshop and shrinking it down to 1 pixel
-->
<!--
<meta itemprop="defaultBackground" content="/images/background.jpg" data-width="1800" data-height="1800" data-position="c" data-style="fill" data-color="#665b42">
-->
<!--
Theme styles
The Custom style presents Populr's end users with a color picker that sets the @custom-color variable
-->
<!-- <meta itemprop="palette" content="palette-default" title="Default" data-preview="#fff,#000"> -->
<!-- <meta itemprop="palette" content="palette-custom" data-preview="custom"> -->
<!-- Add any styles your theme requires here -->
<link rel="stylesheet/less" type="text/css" href="/styles/main.less">
<!-- This script loads the Populr theming engine. Populr will automatically remove it at runtime. -->
<script src="http://populr.me/assets/developers/themer.js"></script>
<!-- Add any javscript your theme requires here -->
<script src="/js/main.js"></script>
</head>
<body>
<!-- Put your theme's HTML inside this script tag. The script tag will
prevent issues with quote escaping and invalid markup. -->
<script id="theme" type="text/x-handlebars-template">
{{logo max_width=250 max_height=100}}
{{{title}}}
{{#region "columnizer" id="main-region" max_cols="3" max_auto_assets="0" dummy_content="T-1|T-1,T-1|T-1,T-1,T-1|I-1|I-2|I-1,I-2|I-1,I-2,I-3|V-1|V-2|V-1,V-2|V-1,V-2,V-3|D-1|D-3|D-1,D-3|D-1,D-2,D-3|E-1|E-2|E-1,E-2|E-1,E-2,E-3"}}
{{#asset "text" size="1"}}
{{{title}}}
{{{body}}}
{{/asset}}
{{#asset "text" size="2"}}
{{{title}}}
{{{body}}}
{{/asset}}
{{#asset "text" size="3"}}
{{{title}}}
{{{body}}}
{{/asset}}
{{#asset "imagegroup" size="1"}}
{{{title}}}
{{{imageslider images width="920" height="360"}}}
{{{description}}}
{{/asset}}
{{#asset "imagegroup" size="2"}}
{{{title}}}
{{{imageslider images width="430" height="353"}}}
{{{description}}}
{{/asset}}
{{#asset "imagegroup" size="3"}}
{{{title}}}
{{{imageslider images width="266" height="230"}}}
{{{description}}}
{{/asset}}
{{#asset "documentgroup" size="1"}}
{{{title}}}
{{{description}}}
<ul class="documents">
{{#documents}}
{{!-- The i tag gets styled by Font Awesome, which Populr pulls in automatically. --}}
<li><a href="{{original_url}}"><i class="icon icon-circle-arrow-right" /> {{title}}</a></li>
{{/documents}}
</ul>
{{/asset}}
{{#asset "documentgroup" size="2"}}
{{{title}}}
{{{description}}}
<ul class="documents">
{{#documents}}
{{!-- The i tag gets styled by Font Awesome, which Populr pulls in automatically. --}}
<li><a href="{{original_url}}"><i class="icon icon-circle-arrow-right" /> {{title}}</a></li>
{{/documents}}
</ul>
{{/asset}}
{{#asset "documentgroup" size="3"}}
{{{title}}}
{{{description}}}
<ul class="documents">
{{#documents}}
{{!-- The i tag gets styled by Font Awesome, which Populr pulls in automatically. --}}
<li><a href="{{original_url}}"><i class="icon icon-circle-arrow-right" /> {{title}}</a></li>
{{/documents}}
</ul>
{{/asset}}
{{#asset "embedgroup" size="1" width="920"}}
{{{title}}}
{{#embeds}}
<div class="embed">{{{html}}}</div>
{{/embeds}}
{{{description}}}
{{/asset}}
{{#asset "embedgroup" size="2" width="430"}}
{{{title}}}
{{#embeds}}
<div class="embed">{{{html}}}</div>
{{/embeds}}
{{{description}}}
{{/asset}}
{{#asset "embedgroup" size="3" width="266"}}
{{{title}}}
{{#embeds}}
<div class="embed">{{{html}}}</div>
{{/embeds}}
{{{description}}}
{{/asset}}
{{/region}}
{{sharing}}
{{pop_links}}
</script>
</body>
</html>