Fix favicon and glyphicons (#744)
* Fix missing icons * Fix favicon and outdated link
This commit is contained in:
parent
512f3bc78e
commit
f9ba9f9787
2
frontend/src/assets/bootstrap.min.css
vendored
2
frontend/src/assets/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
<ShortName>NixOS options</ShortName>
|
||||
<Description>Search NixOS options by name or description.</Description>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
<Image width="16" height="16" type="image/png">https://nixos.org/favicon.png</Image>
|
||||
<Image width="16" height="16" type="image/png">/favicon.png</Image>
|
||||
<Url type="text/html" template="https://search.nixos.org/options?query={searchTerms}"/>
|
||||
<moz:SearchForm>https://search.nixos.org/options</moz:SearchForm>
|
||||
</OpenSearchDescription>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<ShortName>NixOS packages</ShortName>
|
||||
<Description>Search NixOS packages by name or description.</Description>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
<Image width="16" height="16" type="image/png">https://nixos.org/favicon.png</Image>
|
||||
<Image width="16" height="16" type="image/png">/favicon.png</Image>
|
||||
<Url type="text/html" template="https://search.nixos.org/packages?query={searchTerms}"/>
|
||||
<moz:SearchForm>https://search.nixos.org/packages</moz:SearchForm>
|
||||
</OpenSearchDescription>
|
||||
|
|
BIN
frontend/src/assets/favicon.png
Normal file
BIN
frontend/src/assets/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
frontend/src/assets/images/glyphicons-halflings-white.png
Normal file
BIN
frontend/src/assets/images/glyphicons-halflings-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
BIN
frontend/src/assets/images/glyphicons-halflings.png
Normal file
BIN
frontend/src/assets/images/glyphicons-halflings.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -2,20 +2,20 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>NixOS Search</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>NixOS Search</title>
|
||||
|
||||
<link rel="stylesheet" href="/bootstrap.min.css"/>
|
||||
<link rel="stylesheet" href="/bootstrap.min.css" />
|
||||
|
||||
<link rel="stylesheet" href="/bootstrap-responsive.min.css"/>
|
||||
<link rel="stylesheet" href="/bootstrap-responsive.min.css" />
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="https://nixos.org/favicon.png"/>
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
|
||||
|
||||
<link rel="search" type="application/opensearchdescription+xml" title="NixOS packages"
|
||||
href="/desc-search-packages.xml">
|
||||
<link rel="search" type="application/opensearchdescription+xml" title="NixOS options"
|
||||
href="/desc-search-options.xml">
|
||||
<link rel="search" type="application/opensearchdescription+xml" title="NixOS packages"
|
||||
href="/desc-search-packages.xml">
|
||||
<link rel="search" type="application/opensearchdescription+xml" title="NixOS options"
|
||||
href="/desc-search-options.xml">
|
||||
</head>
|
||||
|
||||
<body></body>
|
||||
|
|
|
@ -7,7 +7,7 @@ import Test.Html.Query as Query
|
|||
import Test.Html.Selector exposing (tag, text)
|
||||
|
||||
|
||||
{-| See <https://github.com/elm-community/elm-test>
|
||||
{-| See <https://github.com/elm-explorations/test>
|
||||
-}
|
||||
unitTest : Test
|
||||
unitTest =
|
||||
|
@ -21,7 +21,7 @@ unitTest =
|
|||
]
|
||||
|
||||
|
||||
{-| See <https://github.com/elm-community/elm-test>
|
||||
{-| See <https://github.com/elm-explorations/test>
|
||||
-}
|
||||
fuzzTest : Test
|
||||
fuzzTest =
|
||||
|
|
Loading…
Reference in a new issue