Skip to content

Commit

Permalink
It's dangerous to go alone! Take this.
Browse files Browse the repository at this point in the history
  • Loading branch information
joelit committed Jan 30, 2025
1 parent 39e7545 commit a308ba2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/view/global-search.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{% set pageType = 'global-search' %}
{% extends "base-template.twig" %}
{% block title %}'{{ term }}' - {{ "Search results" | trans }} - {{ GlobalConfig.serviceName }}{% endblock %}
{% block url %}{{ BaseHref }}{{ request.langurl }}{% endblock %}

{% block content %}
<div class="container">
<div class="row">
<div id="main-content">
<div class="p-4 pt-4" id="search-results">
<div class="search-count">
<p class="py-2">
<span class="fw-bold">{{ "%search_count% results for '%term%'" | trans({'%search_count%': search_count, '%term%' : term}) }}</span>
</p>
</div>
{% include "search-results.inc.twig" %}
</div>
</div>
</div>
</div>
{% endblock %}

0 comments on commit a308ba2

Please sign in to comment.