Add search engine

This commit is contained in:
Pascal Le Merrer 2026-02-25 15:13:51 +01:00
parent 928e3afebd
commit 484a540327
4 changed files with 22 additions and 13 deletions

View file

@ -358,6 +358,7 @@ nav {
display: flex;
flex-direction: row;
gap: 30px;
margin-top: 20px;
}
nav ul {
@ -365,6 +366,10 @@ nav ul {
padding: 0;
}
nav ul:nth-child(2) {
margin: auto;
}
nav a {
color: var(--link-color);
}
@ -493,3 +498,6 @@ hr {
margin-top: 40px;
margin-bottom: 40px;
}
.stork-close-button {
position: inherit;
}

View file

@ -36,6 +36,7 @@
{% if TAG_FEED_RSS and tag %}
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS.format(slug=tag.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Tags RSS Feed" />
{% endif %}
<link rel="stylesheet" href="https://files.stork-search.net/basic.css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/screen.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/print.css" type="text/css" media="print" />
@ -51,7 +52,6 @@
<meta property="og:image:type" content="image/png" />
<meta property="og:description" content="{{ SITEDESCRIPTION }}" />
<link rel="stylesheet" href="https://files.stork-search.net/basic.css" />
{% endblock head %}
</head>
<body>