<link rel='stylesheet' id='agon-theme-style-css' href='/styles.css' type='text/css' media='all' />
<link href="https://fonts.googleapis.com/css?family=Roboto:400%7CChivo:700%7CNoto+Sans:400&display=swap" rel="stylesheet" property="stylesheet" media="all" type="text/css" >
<style>
.result {
padding: 30px;
border: 1px solid #DDD;
border-radius: 40px;
background: #FFF;
max-height: 500px;
overflow: auto;
}
.result-item, .result-not-found {
display: inline-block;
width: 100%;
margin: 5px 0;
font-size: 16px;
line-height: 22px;
font-family: "Noto Sans", Sans-serif;
}
.result-item {
float: left;
}
.result-total {
margin-top: 30px;
display: inline-block;
width: 100%;
text-align: right;
font-family: "Chivo", Sans-serif;
font-weight: 600;
}
.result-source {
display: inline-block;
/*width: 100%;*/
color: #4c4c4c;
font-family: "Chivo", Sans-serif;
font-size: 12px;
font-weight: 600;
}
.group {
display: inline-block;
margin-bottom: 20px;
}
.group--title {
font-weight: bold;
}
em {
color: #f15a3c;
}
.more {
font-weight: 600;
margin: 10px 0;
display: inline-block;
}
</style>
<div class="result">
{% if total == 0 %}
{% if language == 'lt' %}
<div class="result-not-found">Duomenų nerasta</div>
{% else %}
<div class="result-not-found">No results found</div>
{% endif %}
{% else %}
{% if language == 'lt' %}
<div class="result-total">Paieškos rezultatai ({{ total }})</div>
{% else %}
<div class="result-total">Search results ({{ total }})</div>
{% endif %}
{% for group in groups %}
{% if group.total %}
<div class="group">
<div class="group--title">
<div class="btn btn--tag animated fadeInDown">
<div class="tag-circle"></div>
{{ group.title }} ({{ group.total }})
</div>
</div>
{% for item in group.items %}
<div class="result-item">
<a href="{{ item.link }}" target="_blank">{{ item.text|raw }}</a>
{% if item.source %}
<br>
<div class="result-source"> {{ item.source }} {% if item.category %}| {{ item.category }}{% endif %}</div>
{% endif %}
</div>
{% endfor %}
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>