Compare commits
2 Commits
51d5d912d4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 52f57401dc | |||
| 8a91c27ce9 |
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
**/public/
|
||||||
90
README.md
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
# Building The Website
|
||||||
|
## Clone Repository
|
||||||
|
`git clone https://dev.libertytools.io/adminuser/libertytoolsio.git`
|
||||||
|
|
||||||
|
## Run Makefile
|
||||||
|
The `Makefile` in the root of the directory will run the following two commands:
|
||||||
|
``` bash
|
||||||
|
hugo server &
|
||||||
|
npx -y pagefind --site public --serve
|
||||||
|
```
|
||||||
|
The first command will run and compile the `hugo` website and any changes made. The second command will build and re-index the search bar index.
|
||||||
|
|
||||||
|
To build the website, simply run
|
||||||
|
``` bash
|
||||||
|
make run
|
||||||
|
```
|
||||||
|
in the project root to run those two commands found in the `Makefile`.
|
||||||
|
|
||||||
|
|
||||||
|
# Viewing Changes to Website Locally
|
||||||
|
After running the `Makefile` you should get an output like this"
|
||||||
|
|
||||||
|
``` shell
|
||||||
|
hugo server &
|
||||||
|
npx -y pagefind --site public --serve
|
||||||
|
Watching for changes in /path/to/libertytools_sites/dev_lt/libertytoolsio/{archetypes,content,data,layouts,static,themes}
|
||||||
|
Watching for config changes in /path/to/libertytools_sites/dev_lt/libertytoolsio/config.toml, /path/to/libertytools_sites/dev_lt/libertytoolsio/themes/hugo-book/hugo.toml
|
||||||
|
Start building sites …
|
||||||
|
hugo v0.151.0-c70ab27ceb841fc9404eab5d2c985ff7595034b7+extended linux/amd64 BuildDate=2025-10-02T13:30:36Z VendorInfo=gohugoio
|
||||||
|
|
||||||
|
|
||||||
|
│ EN
|
||||||
|
──────────────────┼─────
|
||||||
|
Pages │ 27
|
||||||
|
Paginator pages │ 0
|
||||||
|
Non-page files │ 65
|
||||||
|
Static files │ 106
|
||||||
|
Processed images │ 0
|
||||||
|
Aliases │ 0
|
||||||
|
Cleaned │ 0
|
||||||
|
|
||||||
|
Built in 100 ms
|
||||||
|
Environment: "development"
|
||||||
|
Serving pages from disk
|
||||||
|
Running in Fast Render Mode. For full rebuilds on change: hugo server --disableFastRender
|
||||||
|
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
|
||||||
|
Press Ctrl+C to stop
|
||||||
|
|
||||||
|
Running Pagefind v1.5.2 (Extended)
|
||||||
|
Running from: "/path/to/libertytools_sites/dev_lt/libertytoolsio"
|
||||||
|
Source: "public"
|
||||||
|
Output: "public/pagefind"
|
||||||
|
|
||||||
|
[Walking source directory]
|
||||||
|
Found 50 files matching **/*.{html}
|
||||||
|
|
||||||
|
[Parsing files]
|
||||||
|
Did not find a data-pagefind-body element on the site.
|
||||||
|
↳ Indexing all <body> elements on the site.
|
||||||
|
|
||||||
|
[Reading languages]
|
||||||
|
Discovered 2 languages: en-us, en
|
||||||
|
|
||||||
|
[Building search indexes]
|
||||||
|
Total:
|
||||||
|
Indexed 2 languages
|
||||||
|
Indexed 48 pages
|
||||||
|
Indexed 6934 words
|
||||||
|
Indexed 0 filters
|
||||||
|
Indexed 0 sorts
|
||||||
|
|
||||||
|
┌─────────────────────────────────────────────────────────────────────────┐
|
||||||
|
│ Pagefind found references to the Default UI (pagefind-ui.js) │
|
||||||
|
│ on your site. The Default UI is supported and will continue │
|
||||||
|
│ to work. │
|
||||||
|
│ │
|
||||||
|
│ As of 1.5.0, if you are setting up a new integration, use the │
|
||||||
|
│ Component UI instead. It includes a search modal, better │
|
||||||
|
│ accessibility and customization: https://pagefind.app/docs/search-ui/ │
|
||||||
|
└─────────────────────────────────────────────────────────────────────────┘
|
||||||
|
|
||||||
|
Finished in 0.067 seconds
|
||||||
|
|
||||||
|
Serving the Pagefind Playground at http://localhost:1414/pagefind/playground/
|
||||||
|
Serving "public" at http://localhost:1414
|
||||||
|
```
|
||||||
|
|
||||||
|
Copy `http://localhost:1414` into your web browser and you should then see the website as it is with all the changes made, but only served from your local machine. This version of the site is not public facing.
|
||||||
|
|
||||||
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff">
|
|
||||||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#343a40">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:url" content="http://localhost:1313/404.html">
|
|
||||||
<meta property="og:title" content="404 Page not found">
|
|
||||||
<meta property="og:locale" content="en_us">
|
|
||||||
<meta property="og:type" content="website">
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="name" content="404 Page not found">
|
|
||||||
|
|
||||||
<title>404 Page not found | </title>
|
|
||||||
<link rel="icon" href="/favicon.png" >
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="canonical" href="http://localhost:1313/404.html">
|
|
||||||
<link rel="stylesheet" href="/book.min.0edbfa12be0756ec13c02ec8218ae882d32e82be873db98b790ade0a47d58b55.css" integrity="sha256-Dtv6Er4HVuwTwC7IIYrogtMugr6HPbmLeQreCkfVi1U=" crossorigin="anonymous">
|
|
||||||
|
|
||||||
|
|
||||||
<script defer src="/fuse.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.2d00ab2fa395f1ce09fac9ceac13157e5c77c5a675f0c697a3ac191f5e304c9f.js" integrity="sha256-LQCrL6OV8c4J+snOrBMVflx3xaZ18MaXo6wZH14wTJ8=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.not-found {
|
|
||||||
height: 100vh;
|
|
||||||
width: 100vw;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1 {
|
|
||||||
font-size: 10vmin;
|
|
||||||
font-weight: lighter;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1 span {
|
|
||||||
display: inline-block;
|
|
||||||
transition: transform .2s ease-out, opacity .2s ease-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1:hover span {
|
|
||||||
transition-duration: 1s;
|
|
||||||
transform: translate(var(--drift-x), var(--drift-y)) rotate(var(--rotate-end));
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1:hover span:nth-child(1) {
|
|
||||||
--drift-x: -1em;
|
|
||||||
--drift-y: 1em;
|
|
||||||
--rotate-end: -90deg;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1:hover span:nth-child(2) {
|
|
||||||
--drift-x: -1em;
|
|
||||||
--drift-y: -2em;
|
|
||||||
--rotate-end: 45deg;
|
|
||||||
}
|
|
||||||
|
|
||||||
.not-found h1:hover span:nth-child(3) {
|
|
||||||
--drift-x: 3em;
|
|
||||||
--drift-y: 1em;
|
|
||||||
--rotate-end: 120deg;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="not-found flex justify-center align-center">
|
|
||||||
<main class="text-center">
|
|
||||||
<h1>
|
|
||||||
<span>Page</span>
|
|
||||||
<span>Not</span>
|
|
||||||
<span>Found</span>
|
|
||||||
</h1>
|
|
||||||
<h3>
|
|
||||||
<a href="/"></a>
|
|
||||||
</h3>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 214 KiB |
|
Before Width: | Height: | Size: 144 KiB |
|
Before Width: | Height: | Size: 267 KiB |
|
Before Width: | Height: | Size: 267 KiB |
|
Before Width: | Height: | Size: 265 KiB |
|
Before Width: | Height: | Size: 197 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 265 KiB |
|
Before Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 271 KiB |
|
Before Width: | Height: | Size: 271 KiB |
|
Before Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 317 KiB |
|
Before Width: | Height: | Size: 317 KiB |
|
Before Width: | Height: | Size: 317 KiB |
|
Before Width: | Height: | Size: 420 KiB |
|
Before Width: | Height: | Size: 420 KiB |
|
Before Width: | Height: | Size: 644 KiB |
|
Before Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 177 KiB |
|
Before Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 318 KiB |
|
Before Width: | Height: | Size: 540 KiB |
|
Before Width: | Height: | Size: 692 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 540 KiB |
|
Before Width: | Height: | Size: 508 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 503 KiB |
|
Before Width: | Height: | Size: 503 KiB |
|
Before Width: | Height: | Size: 650 KiB |
|
Before Width: | Height: | Size: 650 KiB |
|
Before Width: | Height: | Size: 309 KiB |
|
Before Width: | Height: | Size: 309 KiB |
|
Before Width: | Height: | Size: 36 KiB |
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="800px" height="800px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
||||||
<g><path style="opacity:0.998" fill="#f7931a" d="M 371.5,-0.5 C 390.167,-0.5 408.833,-0.5 427.5,-0.5C 547.491,10.7345 644.658,63.4012 719,157.5C 766.04,221.107 792.874,292.44 799.5,371.5C 799.5,389.833 799.5,408.167 799.5,426.5C 788.394,548.906 734.394,647.406 637.5,722C 574.749,767.198 504.749,793.031 427.5,799.5C 408.833,799.5 390.167,799.5 371.5,799.5C 253.507,788.428 157.34,737.095 83,645.5C 34.0203,581.079 6.18699,508.413 -0.5,427.5C -0.5,408.833 -0.5,390.167 -0.5,371.5C 10.9007,249.504 64.9007,151.337 161.5,77C 224.252,31.8019 294.252,5.9686 371.5,-0.5 Z"/></g>
|
|
||||||
<g><path style="opacity:1" fill="#fffefd" d="M 382.5,139.5 C 397,142.041 411.333,145.375 425.5,149.5C 421.256,172.897 415.923,196.23 409.5,219.5C 421.025,222.965 432.692,225.965 444.5,228.5C 450.167,205.167 455.833,181.833 461.5,158.5C 475.943,161.694 490.276,165.361 504.5,169.5C 504.833,170 505.167,170.5 505.5,171C 499.115,194.369 493.615,217.869 489,241.5C 509.155,248.494 527.988,257.994 545.5,270C 576.01,294.52 584.51,325.353 571,362.5C 562.316,386.514 545.483,401.347 520.5,407C 565.864,431.746 578.697,468.246 559,516.5C 545.983,553.098 520.15,573.598 481.5,578C 455.851,579.641 430.517,577.975 405.5,573C 398.954,597.017 392.954,621.183 387.5,645.5C 372.885,642.221 358.385,638.555 344,634.5C 348.845,611.116 354.345,587.782 360.5,564.5C 360.392,563.558 360.059,562.725 359.5,562C 348.057,559.473 336.724,556.639 325.5,553.5C 320.623,577.342 314.956,601.009 308.5,624.5C 307.833,624.833 307.167,625.167 306.5,625.5C 292.557,621.847 278.557,618.514 264.5,615.5C 270.186,590.756 276.186,566.09 282.5,541.5C 253.488,534.497 224.488,527.33 195.5,520C 195.043,519.586 194.709,519.086 194.5,518.5C 201.5,501.839 209,485.506 217,469.5C 230.565,474.023 244.398,476.523 258.5,477C 264.259,474.342 267.759,469.842 269,463.5C 285.091,397.637 301.257,331.804 317.5,266C 317.049,257.433 313.049,251.099 305.5,247C 292.403,242.559 279.069,239.059 265.5,236.5C 268.362,221.048 271.862,205.715 276,190.5C 276.561,189.978 277.228,189.645 278,189.5C 307.031,197.216 336.198,204.216 365.5,210.5C 371.009,186.798 376.675,163.132 382.5,139.5 Z"/></g>
|
|
||||||
<g><path style="opacity:1" fill="#f7931c" d="M 397.5,272.5 C 421.151,276.55 443.818,283.717 465.5,294C 489.865,307.56 496.365,327.06 485,352.5C 477.764,363.373 467.597,369.54 454.5,371C 444.5,371.667 434.5,371.667 424.5,371C 407.982,368.287 391.649,364.787 375.5,360.5C 382.525,331.067 389.858,301.733 397.5,272.5 Z"/></g>
|
|
||||||
<g><path style="opacity:1" fill="#f7931b" d="M 364.5,404.5 C 393.768,409.317 421.768,418.15 448.5,431C 461.723,437.936 470.889,448.436 476,462.5C 478.734,494.111 464.234,511.611 432.5,515C 415.307,516.211 398.307,514.878 381.5,511C 367.771,507.688 354.104,504.188 340.5,500.5C 348.822,468.543 356.822,436.543 364.5,404.5 Z"/></g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 200 KiB |
|
Before Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 109 KiB |
@@ -1,126 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="123" height="125" fill="none">
|
|
||||||
<g opacity=".6">
|
|
||||||
<mask id="a" width="94" height="89" x="15" y="18" maskUnits="userSpaceOnUse" style="mask-type:alpha">
|
|
||||||
<path fill="#fff" fill-rule="evenodd"
|
|
||||||
d="m61.885 62.26-.008-.01 46.326-7.36L79.091 18.24l-46.483 7.185.308.389-17.33 43.496 28.79 36.612.006-.012 46.437-6.863 17.402-44.154-46.335 7.364-.001.003Z"
|
|
||||||
clip-rule="evenodd"/>
|
|
||||||
<path fill="#fff"
|
|
||||||
d="m61.873 62.25-.145.116-.197-.248.313-.05.03.183Zm.009.01.171.07-.118.296-.199-.25.146-.115Zm46.318-7.37.144-.116.198.248-.314.05-.028-.183ZM79.088 18.24l-.028-.183.106-.016.067.084-.145.115Zm-46.484 7.185-.145.116-.198-.25.315-.049.028.183Zm.309.389.145-.116.066.084-.04.1-.171-.068Zm-17.33 43.497-.146.114-.066-.084.04-.099.172.069Zm28.79 36.611.172.069-.12.298-.197-.253.145-.114Zm.005-.012-.172-.07.04-.098.105-.016.027.184Zm46.437-6.863.172.068-.039.1-.106.015-.027-.183Zm17.403-44.154-.03-.183.321-.05-.119.301-.172-.068Zm-46.336 7.364-.171-.069.039-.097.104-.017.028.183Zm.136-.123.008.01-.29.23-.008-.01.29-.23Zm46.21-7.063-46.326 7.362-.058-.366 46.327-7.362.057.366ZM79.233 18.126l29.111 36.648-.29.23-29.11-36.647.29-.23Zm-46.657 7.117 46.484-7.185.056.366-46.483 7.186-.057-.366Zm.192.687-.309-.388.29-.23.309.387-.29.23ZM15.41 69.243l17.33-43.497.344.137-17.33 43.498-.344-.138Zm28.817 36.794-28.791-36.61.291-.23 28.79 36.612-.29.228Zm.322-.057-.005.012-.344-.138.005-.013.344.139Zm-.199-.253 46.437-6.862.054.366-46.437 6.863-.054-.367Zm46.292-6.747 17.403-44.154.344.136-17.403 44.154-.344-.136Zm17.604-43.903L61.912 62.44l-.058-.366 46.334-7.364.059.366Zm-46.192 7.25-.002.003-.343-.138v-.003l.345.138Z"/>
|
|
||||||
</mask>
|
|
||||||
<g mask="url(#a)">
|
|
||||||
<g filter="url(#b)">
|
|
||||||
<path fill="#FCD45E"
|
|
||||||
d="M63.124 103.421c-18.097-2.631-30.754-18.617-28.27-35.706 2.485-17.09 19.17-28.81 37.267-26.178 18.098 2.63 30.755 18.617 28.27 35.706-2.484 17.089-19.17 28.809-37.267 26.178Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#c)">
|
|
||||||
<path fill="#FCD45E" fill-opacity=".4"
|
|
||||||
d="M41.983 138.933c-20.287-2.949-34.475-20.867-31.691-40.02 2.784-19.152 21.487-32.288 41.774-29.338 20.287 2.949 34.476 20.866 31.691 40.019-2.784 19.153-21.487 32.288-41.774 29.339Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#d)">
|
|
||||||
<path fill="#fff" fill-opacity=".4"
|
|
||||||
d="M66.175 33.466c-1.79 12.314 1.242 20.656 23.34 32.382 11.429 3.663 22.058-13.208 23.848-25.521 1.79-12.313-7.322-23.831-20.353-25.725-13.03-1.895-25.045 6.551-26.835 18.864Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#e)">
|
|
||||||
<path fill="#FCD45E" fill-opacity=".6"
|
|
||||||
d="M68.493 78.634c-7.943-1.155-13.497-8.181-12.405-15.693 1.092-7.513 8.417-12.666 16.36-11.512 7.944 1.155 13.498 8.181 12.406 15.694-1.093 7.512-8.417 12.666-16.36 11.51Z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path fill="url(#f)" fill-opacity=".6" stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="M79.053 18.256 32.568 25.44l29.254 36.826 46.342-7.363-29.111-36.648Z"/>
|
|
||||||
<path stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="m90.78 99.063-46.448 6.864 17.515-43.654 46.335-7.364-17.403 44.154Z"/>
|
|
||||||
<path stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="m15.548 69.327 17.336-43.512 28.97 36.47-17.516 43.653-28.79-36.61Z"/>
|
|
||||||
</g>
|
|
||||||
<g opacity=".6">
|
|
||||||
<mask id="g" width="94" height="89" x="15" y="18" maskUnits="userSpaceOnUse" style="mask-type:alpha">
|
|
||||||
<path fill="#fff" fill-rule="evenodd"
|
|
||||||
d="m61.885 62.26-.008-.01 46.326-7.36L79.091 18.24l-46.483 7.185.308.389-17.33 43.496 28.79 36.612.006-.012 46.437-6.863 17.402-44.154-46.335 7.364-.001.003Z"
|
|
||||||
clip-rule="evenodd"/>
|
|
||||||
<path fill="#fff"
|
|
||||||
d="m61.873 62.25-.145.116-.197-.248.313-.05.03.183Zm.009.01.171.07-.118.296-.199-.25.146-.115Zm46.318-7.37.144-.116.198.248-.314.05-.028-.183ZM79.088 18.24l-.028-.183.106-.016.067.084-.145.115Zm-46.484 7.185-.145.116-.198-.25.315-.049.028.183Zm.309.389.145-.116.066.084-.04.1-.171-.068Zm-17.33 43.497-.146.114-.066-.084.04-.099.172.069Zm28.79 36.611.172.069-.12.298-.197-.253.145-.114Zm.005-.012-.172-.07.04-.098.105-.016.027.184Zm46.437-6.863.172.068-.039.1-.106.015-.027-.183Zm17.403-44.154-.03-.183.321-.05-.119.301-.172-.068Zm-46.336 7.364-.171-.069.039-.097.104-.017.028.183Zm.136-.123.008.01-.29.23-.008-.01.29-.23Zm46.21-7.063-46.326 7.362-.058-.366 46.327-7.362.057.366ZM79.233 18.126l29.111 36.648-.29.23-29.11-36.647.29-.23Zm-46.657 7.117 46.484-7.185.056.366-46.483 7.186-.057-.366Zm.192.687-.309-.388.29-.23.309.387-.29.23ZM15.41 69.243l17.33-43.497.344.137-17.33 43.498-.344-.138Zm28.817 36.794-28.791-36.61.291-.23 28.79 36.612-.29.228Zm.322-.057-.005.012-.344-.138.005-.013.344.139Zm-.199-.253 46.437-6.862.054.366-46.437 6.863-.054-.367Zm46.292-6.747 17.403-44.154.344.136-17.403 44.154-.344-.136Zm17.604-43.903L61.912 62.44l-.058-.366 46.334-7.364.059.366Zm-46.192 7.25-.002.003-.343-.138v-.003l.345.138Z"/>
|
|
||||||
</mask>
|
|
||||||
<g mask="url(#g)">
|
|
||||||
<g filter="url(#h)">
|
|
||||||
<path fill="#C95EFC"
|
|
||||||
d="M63.124 103.421c-18.097-2.631-30.754-18.617-28.27-35.706 2.485-17.09 19.17-28.81 37.267-26.178 18.098 2.63 30.755 18.617 28.27 35.706-2.484 17.089-19.17 28.809-37.267 26.178Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#i)">
|
|
||||||
<path fill="#FCD45E"
|
|
||||||
d="M41.983 138.933c-20.287-2.949-34.475-20.867-31.691-40.02 2.784-19.152 21.487-32.288 41.774-29.338 20.287 2.949 34.476 20.866 31.691 40.019-2.784 19.153-21.487 32.288-41.774 29.339Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#j)">
|
|
||||||
<path fill="#fff" fill-opacity=".4"
|
|
||||||
d="M66.175 33.466c-1.79 12.314 1.242 20.656 23.34 32.382 11.429 3.663 22.058-13.208 23.848-25.521 1.79-12.313-7.322-23.831-20.353-25.725-13.03-1.895-25.045 6.551-26.835 18.864Z"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#k)">
|
|
||||||
<path fill="#FCD45E"
|
|
||||||
d="M68.493 78.634c-7.943-1.155-13.497-8.181-12.405-15.693 1.092-7.513 8.417-12.666 16.36-11.512 7.944 1.155 13.498 8.181 12.406 15.694-1.093 7.512-8.417 12.666-16.36 11.51Z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path fill="url(#l)" stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="M79.053 18.256 32.568 25.44l29.254 36.826 46.342-7.363-29.111-36.648Z"/>
|
|
||||||
<path stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="m90.78 99.063-46.448 6.864 17.515-43.654 46.335-7.364-17.403 44.154Z"/>
|
|
||||||
<path stroke="#fff" stroke-opacity=".4" stroke-width=".494"
|
|
||||||
d="m15.548 69.327 17.336-43.512 28.97 36.47-17.516 43.653-28.79-36.61Z"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<filter id="b" width="244.749" height="241.212" x="-54.752" y="-48.127" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="44.648"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="c" width="129.42" height="125.443" x="-17.685" y="41.532" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="13.814"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="d" width="114.822" height="119" x="32.254" y="-19.153" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="16.745"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="e" width="87.136" height="85.625" x="26.903" y="22.219" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="14.524"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="h" width="244.749" height="241.212" x="-54.752" y="-48.127" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="44.648"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="i" width="129.42" height="125.443" x="-17.685" y="41.532" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="13.814"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="j" width="114.822" height="119" x="32.254" y="-19.153" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="16.745"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="k" width="87.136" height="85.625" x="26.903" y="22.219" color-interpolation-filters="sRGB"
|
|
||||||
filterUnits="userSpaceOnUse">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur result="effect1_foregroundBlur_1_19760" stdDeviation="14.524"/>
|
|
||||||
</filter>
|
|
||||||
<linearGradient id="f" x1="63.532" x2="79.671" y1="65.972" y2="10.172" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#5EFCB0" stop-opacity=".71"/>
|
|
||||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="l" x1="63.532" x2="79.671" y1="65.972" y2="10.172" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#C95EFC"/>
|
|
||||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 239 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 18 KiB |
@@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 327.5 533.3" style="enable-background:new 0 0 327.5 533.3;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#8A92B2;}
|
|
||||||
.st1{fill:#62688F;}
|
|
||||||
.st2{fill:#454A75;}
|
|
||||||
</style>
|
|
||||||
<path class="st0" d="M163.7,197.2V0L0,271.6L163.7,197.2z"/>
|
|
||||||
<path class="st1" d="M163.7,368.4V197.2L0,271.6L163.7,368.4z M163.7,197.2l163.7,74.4L163.7,0V197.2z"/>
|
|
||||||
<path class="st2" d="M163.7,197.2v171.2l163.7-96.8L163.7,197.2z"/>
|
|
||||||
<path class="st0" d="M163.7,399.4L0,302.7l163.7,230.7V399.4z"/>
|
|
||||||
<path class="st1" d="M327.5,302.7l-163.8,96.7v134L327.5,302.7z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 820 B |
|
Before Width: | Height: | Size: 18 KiB |
@@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 327.5 533.3" style="enable-background:new 0 0 327.5 533.3;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#8A92B2;}
|
|
||||||
.st1{fill:#62688F;}
|
|
||||||
.st2{fill:#454A75;}
|
|
||||||
</style>
|
|
||||||
<path class="st0" d="M163.7,197.2V0L0,271.6L163.7,197.2z"/>
|
|
||||||
<path class="st1" d="M163.7,368.4V197.2L0,271.6L163.7,368.4z M163.7,197.2l163.7,74.4L163.7,0V197.2z"/>
|
|
||||||
<path class="st2" d="M163.7,197.2v171.2l163.7-96.8L163.7,197.2z"/>
|
|
||||||
<path class="st0" d="M163.7,399.4L0,302.7l163.7,230.7V399.4z"/>
|
|
||||||
<path class="st1" d="M327.5,302.7l-163.8,96.7v134L327.5,302.7z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 820 B |
@@ -1,24 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Images Directory</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Images Directory</h1>
|
|
||||||
<p>This folder contains image files.</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="monero.svg">monero.svg</a></li>
|
|
||||||
<li><a href="ltlogo.ico">ltlogo.png</a></li>
|
|
||||||
<li><a href="waterfox.svg">waterfox.svg</a></li>
|
|
||||||
<li><a href="decenter.webp">decenter.webp</a></li>
|
|
||||||
<li><a href="Bitcoin.svg">Bitcoin.svg</a></li>
|
|
||||||
<li><a href="eth.svg">eth.svg</a></li>
|
|
||||||
<li><a href="tutanota.svg">tutanota.svg</a></li>
|
|
||||||
<li><a href="beeble.svg">beeble.svg</a></li>
|
|
||||||
<li><a href="popos.svg">popos.svg</a></li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||