LibreY

- privacy respecting meta search engine
git clone git://git.acid.vegas/LibreY.git
Log | Files | Refs | Archive | README | LICENSE

commit 68b5de6bd61fe0994a9da04315ce6c6aa895814a
parent 6c5474c93f0281abdffe506385b999d267e5fb5e
Author: Ahwx <ahwx@ahwx.org>
Date: Thu, 31 Aug 2023 10:41:29 +0200

fix: some minor css padding; feat: add instance (merge pull request #36 from whoisYoges/CastorFixes) Fixed Some CSS and Added a New Instance

Diffstat:
MREADME.md | 1+
Minstances.json | 7+++++++
Minstances.php | 3++-
Msettings.php | 8++++----
Mstatic/css/styles.css | 2+-

5 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
@@ -26,6 +26,7 @@ You can access the full list of LibreX and LibreY instances on one of the follow
 | [librex.revvy.de](https://librex.revvy.de/) | [✅](http://librex.revvybrr6pvbx4n3j4475h4ghw4elqr4t5xo2vtd3gfpu2nrsnhh57id.onion/) | [✅](http://revekebotog64xrrammtsmjwtwlg3vqyzwdurzt2pu6botg4bejq.b32.i2p/) | 🇨🇦 CA |
 | [search.davidovski.xyz](https://search.davidovski.xyz/) | ❌ | ❌ | 🇬🇧 GB |
 | [librey.nohost.network](https://librey.nohost.network/) | ❌ | ❌ | 🇲🇽 MX |
+| [librex.yogeshlamichhane.com.np](https://librex.yogeshlamichhane.com.np/) | ❌ | ❌ | 🇫🇮 FI |
 <br>
 
 
diff --git a/instances.json b/instances.json
@@ -92,6 +92,13 @@
               "librey": true
           },
           {
+            "clearnet": "https://librex.yogeshlamichhane.com.np/",
+            "tor": null,
+            "i2p": null,
+            "country": "FI",
+            "librey": true
+        },
+          {
               "clearnet": "https://lx.vern.cc/",
               "tor": "http://lx.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion/",
               "i2p": "http://vernziqfqvweijfaacmwazohgpdo2bt2ib2jlupt2pwwu27bhgxq.b32.i2p/",
diff --git a/instances.php b/instances.php
@@ -44,7 +44,7 @@
     <title>LibreY - instances</title>
     </head>
     <body>
-        
+        <div class="misc-container">
         <center>
             <h2>Libre<span class="Y">Y</span> instances</h2>
             <?php
@@ -56,6 +56,7 @@
                 list_instances($librex_instances);
             ?>
         </center>
+        </div>
     
 
 <?php require "misc/footer.php"; ?>
diff --git a/settings.php b/settings.php
@@ -106,10 +106,10 @@
                         <label>Number of results per page</label>
                         <input type="number" name="number_of_results" value="<?php echo htmlspecialchars($opts->number_of_results ?? "10") ?>" >
                     </div>
-                    <div>
-                        <label>Safe search</label>
-                        <input type="checkbox" name="safe_search" <?php echo $opts->safe_search ? "checked"  : ""; ?> >
-                    </div>
+                </div>
+                <div>
+                    <label>Safe search</label>
+                    <input type="checkbox" name="safe_search" <?php echo $opts->safe_search ? "checked"  : ""; ?> >
                 </div>
 
                 <div>
diff --git a/static/css/styles.css b/static/css/styles.css
@@ -151,7 +151,7 @@ a:hover,
 .misc-container {
     text-align: center;
     word-wrap: break-word;
-    width: 450px;
+    width: 460px;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 100px;