forked from HangfireIO/Hangfire.Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jumbotron.html
34 lines (33 loc) · 1.37 KB
/
jumbotron.html
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
<div class="jumbotron" style="padding: 25px 36px;">
<div class="row">
<div class="col-md-7 hidden-sm hidden-xs">
<h3 style="margin-top: 0;">Search</h3>
<form id="jumbotron-search" action="{{ pathto('search') }}" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<h3>Getting Started</h3>
<ul>
<li><a href="https://docs.hangfire.io/en/latest/getting-started/index.html">Getting Started</a></li>
<li><a href="https://docs.hangfire.io/en/latest/tutorials/index.html">Tutorials</a></li>
<li><a href="https://codeopinion.com/background-tasks/" target="_blank">Background Tasks in .NET</a> by Derek Comartin</li>
</ul>
</div>
<div class="col-md-5">
<h3 style="margin-top: 0;">Pluralsight Course</h3>
<div class="div-thumbnail">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/FIhpte9UVHM?rel=0&showinfo=0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<script>
$(function () {
$('#jumbotron-search').attr('action', $('#sidebar-search').attr('action'));
});
</script>