diff --git a/frontend/src/routes/+page.svelte b/frontend/src/routes/+page.svelte index 7fbb98a590f..7a766629986 100644 --- a/frontend/src/routes/+page.svelte +++ b/frontend/src/routes/+page.svelte @@ -1,23 +1,101 @@ -
-

{data.corpus.length.toLocaleString()} Inscriptions over x years across x locations

-

{config.description}

-
- -
-

Inscriptions

-
    - {#each data.corpus as inscription} -
  1. - {inscription.metadata.title} -
  2. - {/each} -
-
+
+
+

{data.corpus.length.toLocaleString()} Inscriptions over x years across x locations

+

{config.description}

+
+ +
+
handleSearch()} on:reset={() => handleReset()}> + + + + +
+
+ +
+
+

Inscriptions

+ {#if finishedSearch} +

+ Displaying {inscriptions.length} inscriptions matching + {keywords.split(' ').join(', ')} +

+ {/if} +
+
    + {#each inscriptions as inscription} +
  1. +

    + {inscription.metadata.title} +

    +
    +
    Settlement
    +
    {inscription.metadata.settlement}
    +
    Repository
    +
    {inscription.metadata.repository?._ || 'N/A'}
    +
    Language
    +
    {inscription.metadata.textLang?._ || 'N/A'}
    +
    +
  2. + {/each} +
+
+
+ +