-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.html
56 lines (55 loc) · 2.34 KB
/
code.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
{% comment %}
<!-- SmartSnippets Variables
TitleURL=TextField
TitleText=TextField
item1Image=OptionalImageField
item1URL=TextField
item1Text=TextField
item2Image=OptionalImageField
item2URL=TextField
item2Text=TextField
item3Image=OptionalImageField
item3URL=TextField
item3Text=TextField
item4Image=OptionalImageField
item4URL=TextField
item4Text=TextField
item5Image=OptionalImageField
item5URL=TextField
item5Text=TextField
item6Image=OptionalImageField
item6URL=TextField
item6Text=TextField
item7Image=OptionalImageField
item7URL=TextField
item7Text=TextField
-->
{% endcomment %}
<style>
div#SubNavTitle{font-size:30px}
div.SubNavItem{font-size:20px}
</style>
<div class="text-plugin clearfix" style="font-family:'{{ font }}'">
<div id="SubNavTitle"><a href="{{ TitleURL }}"> {{ TitleText }} </a></div>
{% if item1Image %}
<div class="SubNavItem"><img src="{{ item1Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item1URL }}">{{ item1Text }}</a></div>
{% endif %}
{% if item2Image %}
<div class="SubNavItem"><img src="{{ item2Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item2URL }}">{{ item2Text }}</a></div>
{% endif %}
{% if item3Image %}
<div class="SubNavItem"><img src="{{ item3Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item3URL }}">{{ item3Text }}</a></div>
{% endif %}
{% if item4Image %}
<div class="SubNavItem"><img src="{{ item4Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item4URL }}">{{ item4Text }}</a></div>
{% endif %}
{% if item5Image %}
<div class="SubNavItem"><img src="{{ item5Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item5URL }}">{{ item5Text }}</a></div>
{% endif %}
{% if item6Image %}
<div class="SubNavItem"><img src="{{ item6Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item6URL }}">{{ item6Text }}</a></div>
{% endif %}
{% if item7Image %}
<div class="SubNavItem"><img src="{{ item7Image }}" width="10" height="10" style="margin-bottom:4px;width:10px;height:10px;" /> <a href="{{ item7URL }}">{{ item7Text }}</a></div>
{% endif %}
</div>