-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathmasthead.html
More file actions
18 lines (18 loc) · 1.05 KB
/
Copy pathmasthead.html
File metadata and controls
18 lines (18 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<header class="masthead">
<div class="wrap">
{% if site.logo %}
<a href="{{ '/' | relative_url }}" class="site-logo" rel="home" title="{{ site.title }}">
<img src="{{ site.logo | relative_url }}" class="site-logo-img animated fadeInDown" alt="{{ site.title }}">
</a>
{% endif %}
{% assign page_image = page.image.path | default: page.image %}
{% unless page_image %}
{% if page.url == '/' %}
<h1 class="site-title animated fadeIn"><a href="{{ '/' | relative_url }}"><img src="{{ site.title_image }}" style="transform: scale({{ site.title_image_scale | default: 1.0 }})" alt="{{ site.title }}"/></a></h1>
{% else %}
<div class="site-title animated fadeIn"><a href="{{ '/' | relative_url }}"><img src="{{ site.title_image }}" style="transform: scale({{ site.title_image_scale | default: 1.0 }})" alt="{{ site.title }}"/></a></div>
{% endif %}
<p class="site-description animated fadeIn" itemprop="description">{{ site.description }}</p>
{% endunless %}
</div>
</header><!-- /.masthead -->