-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathhomepage.tpl
140 lines (132 loc) · 5.28 KB
/
homepage.tpl
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
{if !empty($productGroups) || $registerdomainenabled || $transferdomainenabled}
<h2 class="text-center m-4">{lang key='clientHomePanels.productsAndServices'}</h2>
<div class="card-columns home">
{foreach $productGroups as $productGroup}
<div class="card mb-3">
<div class="card-body p-lg-4 p-xl-5 text-center">
<h3 class="card-title pricing-card-title">
{$productGroup->name}
</h3>
<p>{$productGroup->tagline}</p>
<a href="{$productGroup->getRoutePath()}" class="btn btn-block btn-outline-primary">
{lang key='browseProducts'}
</a>
</div>
</div>
{/foreach}
{if $registerdomainenabled}
<div class="card mb-3">
<div class="card-body p-lg-4 p-xl-5 text-center">
<h3 class="card-title pricing-card-title">
{lang key='orderregisterdomain'}
</h3>
<p>{lang key='secureYourDomain'}</p>
<a href="{$WEB_ROOT}/cart.php?a=add&domain=register" class="btn btn-block btn-outline-primary">
{lang key='navdomainsearch'}
</a>
</div>
</div>
{/if}
{if $transferdomainenabled}
<div class="card mb-3">
<div class="card-body p-lg-4 p-xl-5 text-center">
<h3 class="card-title pricing-card-title">
{lang key='transferYourDomain'}
</h3>
<p>{lang key='transferExtend'}</p>
<a href="{$WEB_ROOT}/cart.php?a=add&domain=transfer" class="btn btn-block btn-outline-primary">
{lang key='transferYourDomain'}
</a>
</div>
</div>
{/if}
</div>
{/if}
<h2 class="text-center m-4">{lang key='howCanWeHelp'}</h2>
<div class="row my-5 action-icon-btns">
<div class="col-6 col-md-4 col-lg">
<a href="{routePath('announcement-index')}" class="card-accent-teal">
<figure class="ico-container">
<i class="fal fa-bullhorn"></i>
</figure>
{lang key='announcementstitle'}
</a>
</div>
<div class="col-6 col-md-4 col-lg">
<a href="serverstatus.php" class="card-accent-pomegranate">
<figure class="ico-container">
<i class="fal fa-server"></i>
</figure>
{lang key='networkstatustitle'}
</a>
</div>
<div class="col-6 col-md-4 col-lg">
<a href="{routePath('knowledgebase-index')}" class="card-accent-sun-flower">
<figure class="ico-container">
<i class="fal fa-book"></i>
</figure>
{lang key='knowledgebasetitle'}
</a>
</div>
<div class="col-6 col-md-4 offset-md-2 offset-lg-0 col-lg">
<a href="{routePath('download-index')}" class="card-accent-asbestos">
<figure class="ico-container">
<i class="fal fa-download"></i>
</figure>
{lang key='downloadstitle'}
</a>
</div>
<div class="col-6 offset-3 offset-md-0 col-md-4 col-lg">
<a href="submitticket.php" class="card-accent-green">
<figure class="ico-container">
<i class="fal fa-life-ring"></i>
</figure>
{lang key='homepage.submitTicket'}
</a>
</div>
</div>
<h2 class="text-center m-4">{lang key='homepage.yourAccount'}</h2>
<div class="row my-5 action-icon-btns">
<div class="col-6 col-md-4 col-lg">
<a href="clientarea.php" class="card-accent-midnight-blue">
<figure class="ico-container">
<i class="fal fa-home"></i>
</figure>
{lang key='homepage.yourAccount'}
</a>
</div>
<div class="col-6 col-md-4 col-lg">
<a href="clientarea.php?action=services" class="card-accent-midnight-blue">
<figure class="ico-container">
<i class="far fa-cubes"></i>
</figure>
{lang key='homepage.manageServices'}
</a>
</div>
{if $registerdomainenabled || $transferdomainenabled || $numberOfDomains}
<div class="col-6 col-md-4 col-lg">
<a href="clientarea.php?action=domains" class="card-accent-midnight-blue">
<figure class="ico-container">
<i class="fal fa-globe"></i>
</figure>
{lang key='homepage.manageDomains'}
</a>
</div>
{/if}
<div class="col-6 col-md-4 offset-md-2 offset-lg-0 col-lg">
<a href="supporttickets.php" class="card-accent-midnight-blue">
<figure class="ico-container">
<i class="fal fa-comments"></i>
</figure>
{lang key='homepage.supportRequests'}
</a>
</div>
<div class="col-6 offset-3 offset-md-0 col-md-4 col-lg">
<a href="clientarea.php?action=masspay&all=true" class="card-accent-midnight-blue">
<figure class="ico-container">
<i class="fal fa-credit-card"></i>
</figure>
{lang key='homepage.makeAPayment'}
</a>
</div>
</div>