forked from cloudify-cosmo/getcloudify.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
22 lines (20 loc) · 673 Bytes
/
Copy pathsearch.html
File metadata and controls
22 lines (20 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% if currSearchClass %}
{% assign currClass=currSearchClass %}
{% else %}
{% assign currClass="learnFrom" %}
{% endif %}
<div class="{{currClass}}">
<h2>{{ searchHdr }}</h2>
<div class="searchWrap">
<form id="searchForm" action="#" method="get">
<input id="search" class="searchTxt" type="text" placeholder="Search..."/>
<input id="goBtn" class="searchBtn" type="submit" value="Go"/>
</form>
</div>
</div>
{% if currSearchClass !="learnFromFull" %}
<div class="hp-right-col">
<a class="hp-btn-getCloudify" href="/downloads/get_cloudify">Get Cloudify!</a>
</div>
{% endif %}
{% assign currSearchClass = null %}