-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathindex.html.tmpl
More file actions
84 lines (82 loc) · 3.28 KB
/
Copy pathindex.html.tmpl
File metadata and controls
84 lines (82 loc) · 3.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
{{!include(/^styles/.*/)}}
{{!include(/^fonts/.*/)}}
{{!include(favicon.ico)}}
{{!include(logo.svg)}}
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html lang="en">
{{>partials/head-content}}
<body id="homepage" data-spy="scroll" data-target="#affix">
<span id="forkongithub"><a href="https://github.com/apache/lucenenet" target="_blank">Fork me on GitHub</a></span>
<div id="wrapper">
<header>
{{>partials/navbar}}
</header>
<section id="intro" class="home-section">
<div class="container">
<h1 class="text-center">Lucene.NET is a high performance search library for .NET</h1>
<div class="row">
<div class="nuget-well col-xs-8 col-xs-offset-2 col-lg-6 col-lg-offset-3">
dotnet add package Lucene.Net --prerelease
</div>
</div>
<div class="row">
<div class="text-center project-links">
<a href="https://github.com/apache/lucenenet" target="_blank" >
<i class="fa fa-github"></i>
</a>
<a href="http://mail-archives.apache.org/mod_mbox/lucenenet-dev/" target="_blank">
<i class="fa fa-envelope-o"></i>
</a>
<a href="https://stackoverflow.com/questions/tagged/lucene.net" target="_blank">
<i class="fa fa-stack-overflow"></i>
</a>
<a href="download/download.html">
<i class="fa fa-download" target="_blank"></i>
</a>
</div>
</div>
</div>
</section>
{{>partials/home-quick-start}}
<section class="home-section">
<div class="container">
<div class="row">
<div class="col-md-12">
{{{conceptual}}}
</div>
</div>
</div>
</section>
<section class="home-section books">
<div class="container">
<div class="row">
<h2 id="books" class="text-center">Popular Books</h2>
<div class="row">
<div class="col-xs-12 col-md-6">
<a href="https://www.amazon.com/Instant-Lucene-NET-Michael-Heydt/dp/1782165940" target="_blank">
<img src="https://images-na.ssl-images-amazon.com/images/I/51ovFeqMwBL.jpg"
alt="Instant Lucene.NET by Michael Heydt">
</a>
</div>
<div class="col-xs-12 col-md-6">
<a href="https://www.amazon.com/Lucene-4-Cookbook-Edwood-Ng/dp/1782162283/" target="_blank">
<img src="https://images-na.ssl-images-amazon.com/images/I/51uIsUPhaeL.jpg"
alt="Lucene 4 Cookbook: Over 70 hands-on recipes to quickly and effectively integrate Lucene into your search application by Edwood Ng">
</a>
</div>
</div>
</div>
</div>
</section>
<section class="home-section">
<div class="container">
<div class="row"></div>
</div>
</section>
{{>partials/footer}}
</div>
{{>partials/scripts}}
</body>
</html>