forked from HangfireIO/Hangfire.Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jumbotron.html
50 lines (48 loc) · 2.41 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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;">Courses</h3>
<div class="div-thumbnail" style="width: 263px; height: 162px;">
<div id="carousel-courses" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<a href="https://www.udemy.com/course/building-background-services-in-net-with-hangfire/?referralCode=ADE705B8BB4A44749A7D" target="_blank"><img src="_static/udemy.png" alt="Udemy Course"/></a>
</div>
<div class="item">
<a href="https://www.pluralsight.com/courses/simplified-dotnet-background-tasks-hangfire" target="_blank"><img src="_static/pluralsight.png" alt="Pluralsight Course"/></a>
</div>
</div>
<a class="left carousel-control" href="#carousel-courses" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-courses" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<script>
$(function () {
$('#jumbotron-search').attr('action', $('#sidebar-search').attr('action'));
});
</script>