Change the page index texts

This commit is contained in:
Kerollmops 2020-06-04 18:19:52 +02:00
parent c42d3c19e2
commit 5d1c625b74
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
<link rel="stylesheet" href="/bulma.min.css"> <link rel="stylesheet" href="/bulma.min.css">
<script type="text/javascript" src="/jquery-3.4.1.min.js"></script> <script type="text/javascript" src="/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="/papaparse.min.js"></script> <script type="text/javascript" src="/papaparse.min.js"></script>
<title>The daugt</title> <title>The mega-mini-indexer</title>
<style> <style>
em { em {
color: hsl(204, 86%, 25%); color: hsl(204, 86%, 25%);
@ -90,7 +90,7 @@
<div class="hero-body"> <div class="hero-body">
<div class="container"> <div class="container">
<h1 class="title"> <h1 class="title">
Welcome to daugt Welcome to the mega-mini-indexer also known as the MMI
</h1> </h1>
<h2 class="subtitle"> <h2 class="subtitle">
This dashboard will help you check the search results with ease. This dashboard will help you check the search results with ease.

View File

@ -24,7 +24,7 @@ static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
static ID_GENERATOR: AtomicUsize = AtomicUsize::new(0); // AtomicU32 ? static ID_GENERATOR: AtomicUsize = AtomicUsize::new(0); // AtomicU32 ?
#[derive(Debug, StructOpt)] #[derive(Debug, StructOpt)]
#[structopt(name = "mm-indexer", about = "The server side of the daugt project.")] #[structopt(name = "mm-indexer", about = "The indexer side of the MMI project.")]
struct Opt { struct Opt {
/// The database path where the database is located. /// The database path where the database is located.
/// It is created if it doesn't already exist. /// It is created if it doesn't already exist.

View File

@ -7,7 +7,7 @@ use structopt::StructOpt;
use mega_mini_indexer::{Index, BEU32}; use mega_mini_indexer::{Index, BEU32};
#[derive(Debug, StructOpt)] #[derive(Debug, StructOpt)]
#[structopt(name = "mm-indexer", about = "The server side of the daugt project.")] #[structopt(name = "mm-search", about = "The server side of the MMI project.")]
struct Opt { struct Opt {
/// The database path where the database is located. /// The database path where the database is located.
/// It is created if it doesn't already exist. /// It is created if it doesn't already exist.