forked from rampatra/photography
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportrait.html
More file actions
40 lines (37 loc) · 1.45 KB
/
portrait.html
File metadata and controls
40 lines (37 loc) · 1.45 KB
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
---
layout: default
---
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html"><strong>{{ site.header.title }}</strong> {{ site.header.subtitle }}</a></h1>
<nav>
<ul class="navbar" id="navbar">
<li><a href="/commercial.html">Commercial</a></li>
<li><a href="/product.html">Product</a></li>
<li><a href="/lifestyle.html">Lifestyle</a></li>
<li><a href="/portrait.html">Portrait</a></li>
<li><a href="/others.html">Others</a></li>
<li><a href="#footer" class="icon fa-info-circle">About</a></li>
</ul>
<a href="javascript:void(0);" class="icon" style="margin-right: 20px;" onclick="toggleNavbar()">
<i class="fa fa-bars"></i>
</a>
</nav>
</header>
<!-- Main -->
<div id="main" data-exif='{{ site.exif }}'>
{% for image in site.static_files %}
{% if image.path contains 'images/fulls/Portrait' %}
<article class="thumb">
<a href="{{ site.baseurl }}{{ site.image_fulls_loc }}/Portrait/{{ image.name }}" class="image">
<img src="{{ site.baseurl }}{{ site.image_thumbs_loc }}/Portrait/{{ image.name }}" alt=""
data-name="{{ image.name }}"/></a>
<!--<h2></h2>
<p></p>-->
</article>
{% endif %}
{% endfor %}
</div>
</div>