-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.php
29 lines (26 loc) · 871 Bytes
/
profile.php
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
<?php defined('AUTOMAD') or die('Direct access not permitted!'); ?>
<@ snippets/header.php @>
<@ snippets/carousel_full_width.php @>
<div class="overflow-hidden">
<div class="container">
<div class="row d-flex align-items-stretch">
<div class="col-lg-3 order-3 order-lg-0">
<@ snippets/sidebar.php @>
</div>
<div class="col-lg-6 order-2 order-lg-0 py-5 pr-lg-5">
<h1 class="mb-3">@{ title }</h1>
@{ textContact | markdown }
<div class="lead my-5">
<@ snippets/text_teaser.php @>
</div>
<@ snippets/text.php @>
</div>
<div class="col-lg-3 order-1 order-lg-0 pt-5">
<@ with @{ imageProfile } { width: 420, height: 420, crop: true } @>
<img src="@{ :fileResized }" alt="@{ :basename }" class="img-fluid rounded" />
<@ end @>
</div>
</div>
</div>
</div>
<@ snippets/footer.php @>