blob: 5a7e09926bf3f50c06e23c869557d76e532ce3ba [file] [log] [blame]
<!doctype html>
<html>
<head>
{% include "lucene/_head.html" %}
<title>{{ SITENAME}} - {% block headtitle %}{{ SITESUBTITLE }}{% endblock %}</title>
{% block metakeys %}<meta name="keywords"
content="apache, apache lucene, apache solr, solr, lucene
search, information retrieval, spell checking, faceting, inverted index,
open source"/>{% endblock %}
{% block ogmeta %}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lucene.apache.org/{{ page.url }}"/>
<meta property="og:title" content="{{ page.title }}"/>
<meta property="og:description" content="{{ page.content | striptags | replace("\"", "&quot;") | truncate(137, False, '...') }}"/>
<meta property="og:image" content="https://lucene.apache.org/theme/images/lucene/lucene_og_image.png{{ STATIC_RESOURCE_SUFFIX }}"/>
<meta property="og:image:secure_url" content="https://lucene.apache.org/theme/images/lucene/lucene_og_image.png{{ STATIC_RESOURCE_SUFFIX }}"/>
{% endblock %}
{% block favicon %}<link rel="shortcut icon" type="image/png"
href="{{ SITEURL }}/theme/images/lucene/lucene-favicon.png{{ STATIC_RESOURCE_SUFFIX }}"/>{% endblock %}
{% block css %}{% endblock %}
{% block javascript %}{% endblock %}
</head>
<body id="home">
<div id="wrap">
<div id="header">
{% block header %}
<div id="logo" style="float:left">
{% block logo %}
<a href="{{ SITEURL }}/">
<img border="0" src="{{ SITEURL }}/theme/images/lucene/lucene_logo_green_300.png{{ STATIC_RESOURCE_SUFFIX }}" alt="Lucene Logo"/>
</a>
{% endblock %}
</div>
<!-- TODO: Search disabled as it does not work, 2021-02-21
{% include "lucene/_search.html" %}
-->
<div id="nav">
<ul>
{% block nav_items %}
{% endblock %}
</ul>
</div>
{% block hero_header %}
{% endblock %}
{% endblock header %}
</div> <!-- End #header -->
<div id="content-wrap" class="clearfix">
<div id="main">
{% block content %}
{% endblock %}
</div>
<div id="sidebar">
{% block sidebar %}
{% endblock %}
</div>
</div> <!-- End #content-wrap -->
{% include "lucene/_footer.html" %}
</div> <!-- End #wrap -->
{% include "_analytics.html" %}
</body>
</html>