coralite-plugin-aggregation 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,7 +21,7 @@ The **Coralite Aggregation Plugin** is a powerful tool designed to help develope
21
21
 
22
22
  ## Coralite Aggregation Plugin Guide
23
23
 
24
- ### Installation {#installation}
24
+ ### Installation
25
25
 
26
26
  ```bash
27
27
  npm install coralite-plugin-aggregation
@@ -43,7 +43,7 @@ export default {
43
43
 
44
44
  ---
45
45
 
46
- ### Example Implementation {#example}
46
+ ### Example Implementation
47
47
 
48
48
  #### Entry Point: Displaying Aggregated Results
49
49
  Create a file like `coralite-posts.html` to define your aggregation logic and rendering template:
@@ -282,16 +282,21 @@ Replace or extend the `paginationList` token function with your custom logic. Th
282
282
 
283
283
  ---
284
284
 
285
- ### Key Parameters
286
- The `pagination_list` token function receives these critical parameters from Coralite:
287
-
288
- | Parameter | Description |
289
- |-----------------------|-----------------------------------------------------------------------------|
290
- | `values.pagination_length` | Total number of items across all pages (used to determine page count). |
291
- | `values.pagination_current` | Currently active page number. |
292
- | `values.pagination_dirname` | Base directory path for routing context (e.g., `/blog`). |
293
- | `values.pagination_index` | Base URL path for pagination links (e.g., `/blog/index.html`). |
294
-
295
- > **Note:** Avoid hardcoding values like `length`, `currentPage`, or `dirname`. Use the parameters provided by Coralite to ensure compatibility.
285
+ ### Template tokens
286
+ The pagination template receives these token values:
287
+
288
+ | Property | Description |
289
+ |------------------------------|-----------------------------------------------------------------------------|
290
+ | `paginationIndexPathname` | The index path name for pagination (e.g., `/blog/index.html`). |
291
+ | `paginationSegment` | The current segment of pagination (e.g., "page"). |
292
+ | `paginationMaxVisible` | Maximum number of visible pages in the pagination UI. |
293
+ | `paginationProcessed` | Indicates whether the pagination has been processed (`true`/`false`). |
294
+ | `paginationOffset` | String representation of the offset (used for page calculations). |
295
+ | `paginationFilePathname` | The file path name for pagination context (e.g., `/blog/page-2.html`). |
296
+ | `paginationFileDirname` | The directory name of the file for pagination context (e.g., `/blog`). |
297
+ | `paginationURLPathname` | The URL path name used in pagination (e.g., `/blog/`). |
298
+ | `paginationURLDirname` | The URL directory name used in pagination (e.g., `/blog`). |
299
+ | `paginationLength` | Total length of the paginated data set (used to determine total page count).|
300
+ | `paginationCurrent` | Current page index (as a string, e.g., "2"). |
296
301
 
297
302
  ---
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Great Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-08T20:23:07.645Z">
26
+ Wed, 8 Jan 25
27
+ </time>
28
+
29
+ The Great Barrier Reef&#x2014;largest, comprising over 2,900 individual reefs and 900 islands stretching for over 2,600 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item disabled"><span class="page-link">Previous</span></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/index.html">1</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/2.html">2</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/3.html">3</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/all/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/2.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Great Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-08T20:23:07.645Z">
26
+ Wed, 8 Jan 25
27
+ </time>
28
+
29
+ The Great Barrier Reef&#x2014;largest, comprising over 2,900 individual reefs and 900 islands stretching for over 2,600 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/all/index.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/index.html">1</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/page/2.html">2</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/3.html">3</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/all/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/3.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Mesoamerican Barrier Reef System</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The Mesoamerican Barrier Reef System&#x2014;second largest, stretching 1,000 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/all/page/2.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/index.html">1</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/2.html">2</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/page/3.html">3</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/4.html">4</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/4.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>New Caledonia Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The New Caledonia Barrier Reef&#x2014;second longest double barrier reef, covering 1,500 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/all/page/3.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/index.html">1</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/all/page/3.html">3</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/page/4.html">4</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/all/page/5.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Bahamas Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The Andros, Bahamas Barrier Reef&#x2014;third largest, following the east coast of Andros Island, Bahamas, between Andros and Nassau
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/all/page/4.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/index.html">1</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/all/page/4.html">4</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/all/page/5.html">5</a></li><li class="page-item disabled"><span class="page-link">Next</span></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Great Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-08T20:23:07.645Z">
26
+ Wed, 8 Jan 25
27
+ </time>
28
+
29
+ The Great Barrier Reef&#x2014;largest, comprising over 2,900 individual reefs and 900 islands stretching for over 2,600 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item disabled"><span class="page-link">Previous</span></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/index.html">1</a></li><li class="page-item"><a class="page-link" href="/blog/page/2.html">2</a></li><li class="page-item"><a class="page-link" href="/blog/page/3.html">3</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/page/2.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Great Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-08T20:23:07.645Z">
26
+ Wed, 8 Jan 25
27
+ </time>
28
+
29
+ The Great Barrier Reef&#x2014;largest, comprising over 2,900 individual reefs and 900 islands stretching for over 2,600 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/index.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/index.html">1</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/page/2.html">2</a></li><li class="page-item"><a class="page-link" href="/blog/page/3.html">3</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/page/3.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Mesoamerican Barrier Reef System</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The Mesoamerican Barrier Reef System&#x2014;second largest, stretching 1,000 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/page/2.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/index.html">1</a></li><li class="page-item"><a class="page-link" href="/blog/page/2.html">2</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/page/3.html">3</a></li><li class="page-item"><a class="page-link" href="/blog/page/4.html">4</a></li><li class="page-item"><a class="page-link" href="/blog/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/page/4.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>New Caledonia Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The New Caledonia Barrier Reef&#x2014;second longest double barrier reef, covering 1,500 kilometers
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/page/3.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/index.html">1</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/page/3.html">3</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/page/4.html">4</a></li><li class="page-item"><a class="page-link" href="/blog/page/5.html">5</a></li><li class="page-item"><a class="page-link" href="/blog/page/5.html">Next</a></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,36 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog posts</title>
7
+ <meta name="name" content="coralite">
8
+ <meta name="description" content="look mum, no database!">
9
+ </head>
10
+ <body>
11
+ <h1>Build database free websites</h1>
12
+ <hr>
13
+
14
+ <section id="pagination">
15
+ <h2>Paginated blog posts</h2>
16
+
17
+
18
+
19
+ <a href>
20
+ <h3>Bahamas Barrier Reef</h3>
21
+ </a>
22
+
23
+
24
+ <span>Nemo</span>
25
+ <time datetime="2025-01-09T20:23:07.645Z">
26
+ Thu, 9 Jan 25
27
+ </time>
28
+
29
+ The Andros, Bahamas Barrier Reef&#x2014;third largest, following the east coast of Andros Island, Bahamas, between Andros and Nassau
30
+
31
+ <ul class="pagination"><li class="page-item"><a class="page-link" href="/blog/page/4.html">Previous</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/index.html">1</a></li><li class="page-item disabled"><span class="page-link">...</span></li><li class="page-item"><a class="page-link" href="/blog/page/4.html">4</a></li><li class="page-item"><a class="page-link active" aria-current="page" href="/blog/page/5.html">5</a></li><li class="page-item disabled"><span class="page-link">Next</span></li></ul>
32
+
33
+
34
+ </section>
35
+ </body>
36
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <meta name="title" content="Great Barrier Reef">
8
+ <meta name="author" content="Nemo">
9
+ <meta name="image" content="image.png">
10
+ <meta name="image_alt" content="Photo of a cat">
11
+ <meta name="description" content="The Great Barrier Reef&#x2014;largest, comprising over 2,900 individual reefs and 900 islands stretching for over 2,600 kilometers">
12
+ <meta name="published_time" content="2025-01-08T20:23:07.645Z">
13
+ <meta name="country" content="au" data-dev="true">
14
+ </head>
15
+ <body>
16
+
17
+ <header>
18
+ This is the mighty header
19
+ <span data-dev="true">Dev mode enabled</span>
20
+
21
+ <h1>Great Barrier Reef</h1>
22
+
23
+ </header>
24
+
25
+
26
+ <span>Nemo</span>
27
+ <time datetime="2025-01-08T20:23:07.645Z">
28
+ Wed, 8 Jan 25
29
+ </time>
30
+
31
+ </body>
32
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <meta name="title" content="Mesoamerican Barrier Reef System">
8
+ <meta name="author" content="Nemo">
9
+ <meta name="image" content="image.png">
10
+ <meta name="image_alt" content="Photo of a dog">
11
+ <meta name="description" content="The Mesoamerican Barrier Reef System&#x2014;second largest, stretching 1,000 kilometers">
12
+ <meta name="published_time" content="2025-01-09T20:23:07.645Z">
13
+ <meta name="country" content="mx" data-dev="true">
14
+ </head>
15
+ <body>
16
+
17
+ <header>
18
+ This is the mighty header
19
+ <span data-dev="true">Dev mode enabled</span>
20
+
21
+ <h1>Mesoamerican Barrier Reef System</h1>
22
+
23
+ </header>
24
+
25
+
26
+ <span>Nemo</span>
27
+ <time datetime="2025-01-08T20:23:07.645Z">
28
+ Wed, 8 Jan 25
29
+ </time>
30
+
31
+ </body>
32
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <meta name="title" content="New Caledonia Barrier Reef">
8
+ <meta name="author" content="Nemo">
9
+ <meta name="image" content="image.png">
10
+ <meta name="image_alt" content="Photo of a dog">
11
+ <meta name="description" content="The New Caledonia Barrier Reef&#x2014;second longest double barrier reef, covering 1,500 kilometers">
12
+ <meta name="published_time" content="2025-01-09T20:23:07.645Z">
13
+ <meta name="country" content="fr" data-dev="true">
14
+ </head>
15
+ <body>
16
+
17
+ <header>
18
+ This is the mighty header
19
+ <span data-dev="true">Dev mode enabled</span>
20
+
21
+ <h1>New Caledonia Barrier Reef</h1>
22
+
23
+ </header>
24
+
25
+
26
+ <span>Nemo</span>
27
+ <time datetime="2025-01-08T20:23:07.645Z">
28
+ Wed, 8 Jan 25
29
+ </time>
30
+
31
+ </body>
32
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <meta name="title" content="Bahamas Barrier Reef">
8
+ <meta name="author" content="Nemo">
9
+ <meta name="image" content="image.png">
10
+ <meta name="image_alt" content="Photo of a dog">
11
+ <meta name="description" content="The Andros, Bahamas Barrier Reef&#x2014;third largest, following the east coast of Andros Island, Bahamas, between Andros and Nassau">
12
+ <meta name="published_time" content="2025-01-09T20:23:07.645Z">
13
+ <meta name="country" content="fr" data-dev="true">
14
+ </head>
15
+ <body>
16
+
17
+ <header>
18
+ This is the mighty header
19
+ <span data-dev="true">Dev mode enabled</span>
20
+
21
+ <h1>Bahamas Barrier Reef</h1>
22
+
23
+ </header>
24
+
25
+
26
+ <span>Nemo</span>
27
+ <time datetime="2025-01-08T20:23:07.645Z">
28
+ Wed, 8 Jan 25
29
+ </time>
30
+
31
+ </body>
32
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <meta name="title" content="Red Sea">
8
+ <meta name="author" content="Nemo">
9
+ <meta name="image" content="image.png">
10
+ <meta name="image_alt" content="Photo of a dog">
11
+ <meta name="description" content="The Red Sea includes 6,000-year-old fringing reefs located along a 2,000 km (1,240 mi) coastline">
12
+ <meta name="published_time" content="2025-01-09T20:23:07.645Z">
13
+ <meta name="country" content="fr" data-dev="true">
14
+ </head>
15
+ <body>
16
+
17
+ <header>
18
+ This is the mighty header
19
+ <span data-dev="true">Dev mode enabled</span>
20
+
21
+ <h1>Red Sea</h1>
22
+
23
+ </header>
24
+
25
+
26
+ <span>Nemo</span>
27
+ <time datetime="2025-01-08T20:23:07.645Z">
28
+ Wed, 8 Jan 25
29
+ </time>
30
+
31
+ </body>
32
+ </html>