forked from newscoop/theme-Quetzal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard_index.tpl
75 lines (68 loc) · 3.47 KB
/
dashboard_index.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
{{ config_load file="{{ $gimme->language->english_name }}.conf" }}
{{ include file="_tpl/_html-head.tpl" }}
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
{{ include file="_tpl/header.tpl" }}
<section role="main" class="internal-page section-page">
<div class="wrapper">
<header class="section-header">
<div class="container">
<div class="row">
<div class="span10">
<div class="breadcrumbs">
<h2>{{ #welcome# }} {{ $user->name }}</h2>
</div>
</div>
</div>
<div class="row">
<div class="span12 more-news-tabs tab-sections">
<a class="back-link visible-phone" href="javascript:history.back()">← {{ #back# }}</a>
</div>
</div>
</div>
</header>
<div class="container">
<section id="content">
<div class="row home-featured-news">
<div class="span4 visible-desktop">
<center>
<span class="label">{{ #currentAvatar# }}</span><br>
<figure class="user-image">
<img src="{{ include file="_tpl/user-image.tpl" user=$user width=140 height=210 }}" style="max-width: 100%" rel="resizable" />
</figure>
</center>
</div>
<div class="span8 hidden-desktop">
<center>
<span class="label">{{ #currentAvatar# }}</span><br>
<figure class="user-image">
<img src="{{ include file="_tpl/user-image.tpl" user=$user width=175 height=210 }}" style="max-width: 100%" rel="resizable" />
</figure>
</center>
</div>
<div class="span8">
<div class="quetzal-form well">
<link rel="stylesheet" href="{{ url static_file="_css/datepicker.css"}}">
<script src="{{ url static_file='_js/vendor/bootstrap-datepicker.js'}}"></script>
<script type="text/javascript">
$(function() {
// Date picker
$('#attributes-birth_date').datepicker({
format:'yyyy/mm/dd',
startView:2,
autoclose:'true'
});
});
</script>
{{ $form }}
</div>
</div>
</div> <!--end div class="row"-->
</section> <!-- end section id=content -->
</div> <!-- end div class='container' -->
</div> <!-- end div class='wrapper' -->
</section> <!-- end section role main -->
{{ include file="_tpl/footer.tpl" }}
{{ include file="_tpl/_html-foot.tpl" }}