diff --git a/.github/defs.py b/.github/defs.py
index b1c920c7..7b93cf74 100644
--- a/.github/defs.py
+++ b/.github/defs.py
@@ -8,6 +8,7 @@ def rel_path(path: str, from_path: str) -> str:
THEME_DIR = from_src("../themes")
RELEASE_DIR = from_src("../release")
+PAGES_DIR = from_src("../generated")
TEMP_DIR = from_src("temp")
FEATURED_ORDERING = from_src("data/featured.txt")
@@ -19,7 +20,6 @@ def rel_path(path: str, from_path: str) -> str:
README_TEST = ["readme.md", "README.md", "readme.txt", "README.txt"]
REL_PATH = os.path.abspath(os.path.join(SRC_DIR, ".."))
-PAGES_DIR = from_src("../pages")
PAGES_ICONS_DIR = os.path.join(PAGES_DIR, "icons")
README_PATH = from_src("../README.md")
INDEX_TEMPLATE = from_src("template/index.template.md")
@@ -41,6 +41,10 @@ def rel_path(path: str, from_path: str) -> str:
PREVIEW_ICON = f""
+NB_SPACE = " "
+NB_SPACER = NB_SPACE * 2
+LB_SPACER = " " + NB_SPACE
+
_pages = {
"custom": "Custom Themes",
"remixed": "Remixed Themes",
@@ -49,7 +53,7 @@ def rel_path(path: str, from_path: str) -> str:
}
HEADER_LINKS = {
- **{name: [text.replace(" ", " "), os.path.join(PAGES_DIR, name, "index.md")] for name, text in _pages.items()},
+ **{name: [text.replace(" ", NB_SPACE), os.path.join(PAGES_DIR, name, "index.md")] for name, text in _pages.items()},
"contributing": ["Contributing", from_src("../CONTRIBUTING.md")]
}
@@ -60,4 +64,24 @@ def rel_path(path: str, from_path: str) -> str:
MAX_RECENTS = 3
COLUMN_WIDTH = 46
-COLUMN_SPANNER = " " * COLUMN_WIDTH
+COLUMN_SPANNER = NB_SPACE * COLUMN_WIDTH
+
+WARN_GENERATED_FILE = f"""
+"""
diff --git a/.github/generate.py b/.github/generate.py
index 6e718cf0..69e80212 100644
--- a/.github/generate.py
+++ b/.github/generate.py
@@ -52,8 +52,8 @@ def main():
write_pages(themes_custom, "custom", "Custom Themes", generate_table_grid)
write_pages(themes_remixed, "remixed", "Remixed Themes", generate_table_grid)
- write_pages(themes_icon_packs, "icons_themes", "Theme Icon Packs", generate_icon_pack_table)
- write_pages(standalone_icon_packs, "icons_standalone", "Standalone Icon Packs", generate_icon_pack_table)
+ write_pages(themes_icon_packs, "icons_themes", "Theme Icon Packs", generate_icon_pack_table, page_size=9)
+ write_pages(standalone_icon_packs, "icons_standalone", "Standalone Icon Packs", generate_icon_pack_table, page_size=9)
write_file(README_PATH, generate_index({
"custom": len(themes_custom),
@@ -67,7 +67,7 @@ def main():
def write_file(path: str, buffer: str):
with open(path, "w+", encoding="utf-8") as outfile:
- outfile.write(buffer)
+ outfile.write(WARN_GENERATED_FILE + buffer)
def apply_template(path: str, data: dict) -> str:
@@ -114,16 +114,10 @@ def write_pages(items: list, group_name: str, group_header: str, item_grid_gener
index = page * page_size
batch = items[index : index + page_size]
- last_item = min(index + page_size, total)
buffer = ""
buffer += apply_template(HEADER_TEMPLATE, { "LINKS": generate_header_links(current_path, current_group=group_name) })
- buffer += f"""
-## {group_header}
-
-**Page {page + 1} of {num_pages}**
-*Showing {index + 1}–{last_item} of {total} items*
-"""
+ buffer += f"\n## {group_header}\n\n*Page {page + 1} of {num_pages} — {total} items available*\n"
buffer += item_grid_generator(batch, **opts) + "\n\n"
if num_pages > 1:
@@ -139,35 +133,48 @@ def generate_header_links(current_path: str, current_group: str = None):
links.append(f"**{text}**")
else:
links.append(f"[{text}]({rel_path(link, current_path)})")
- return " • ".join(links)
+ return f"{LB_SPACER}•{LB_SPACER}".join(links)
def generate_pagination(current_page: int, num_pages: int) -> str:
buffer = ""
-
buffer += """---\n\n
"""
-
if current_page > 0:
- buffer += f"""\n\n[◀ PREV PAGE]({format_page_filename(current_page - 1)})\n\n | """
+ buffer += f"""\n\n[❮{NB_SPACER}PREV PAGE]({format_page_filename(current_page - 1)})\n\n | """
+ buffer += f"""\n\n{generate_page_links(current_page, num_pages)}\n\n | """
+ if current_page < num_pages - 1:
+ buffer += f"\n\n[NEXT PAGE{NB_SPACER}❯]({format_page_filename(current_page + 1)})\n\n | "
+ buffer += "
"
+ return buffer
- buffer += """\n\n"""
+
+def generate_page_links(current_page: int, num_pages: int) -> str:
+ if num_pages <= 9:
+ return LB_SPACER.join(generate_page_link(page, current_page) for page in range(num_pages))
- for page in range(num_pages):
- if page == current_page:
- buffer += f"**{page + 1:02}**"
- else:
- buffer += f"[{page + 1:02}]({format_page_filename(page)})"
- if page < num_pages - 1:
- buffer += " "
+ last_page = num_pages - 1
+ cutoff = 5
+ half_cut = math.floor(cutoff / 2)
- buffer += "\n\n | "
+ is_low = current_page < cutoff
+ is_high = current_page > last_page - cutoff
- if current_page < num_pages - 1:
- buffer += f"\n\n[NEXT PAGE ▶]({format_page_filename(current_page + 1)})\n\n | "
+ buffer = ""
+ buffer += generate_page_link(0, current_page) + LB_SPACER
+ buffer += generate_page_link_range(range(1, cutoff + 2), current_page) if is_low else "…"
+ buffer += LB_SPACER if is_low or is_high \
+ else LB_SPACER + generate_page_link_range(range(current_page - half_cut, current_page + half_cut + 1), current_page) + LB_SPACER
+ buffer += generate_page_link_range(range(last_page - cutoff - 1, last_page), current_page) if is_high else "…"
+ buffer += LB_SPACER + generate_page_link(last_page, current_page)
+ return buffer
- buffer += ""
- return buffer
+def generate_page_link_range(rng: range, current_page: int) -> str:
+ return " ".join(generate_page_link(page, current_page) for page in rng)
+
+
+def generate_page_link(page: int, current_page: int) -> str:
+ return f"{NB_SPACE}**{page + 1}**{NB_SPACE}" if page == current_page else f"[{NB_SPACE}{page + 1}{NB_SPACE}]({format_page_filename(page)})"
def generate_table_grid(themes) -> str:
@@ -244,10 +251,10 @@ def generate_item(theme: str, index: int = 0, collect_data: bool = False) -> str
"NAME": name + " ★" if is_featured else name,
"AUTHOR": author or " ",
"TITLE": title,
- "HAS_BGM": f" {BGM_ICON}" if has_bgm else "",
- "HAS_ICONPACK": f" {HAS_ICONPACK_ICON}" if has_icon_pack else "",
- "README": f" {README_ICON}" if len(readme_path) != 0 else "",
- "AUTHOR_BTN": f" {AUTHOR_ICON}" if author else "",
+ "HAS_BGM": f"{NB_SPACER}{BGM_ICON}" if has_bgm else "",
+ "HAS_ICONPACK": f"{LB_SPACER}{HAS_ICONPACK_ICON}" if has_icon_pack else "",
+ "README": f"{NB_SPACER}{README_ICON}" if len(readme_path) != 0 else "",
+ "AUTHOR_BTN": f"{NB_SPACER}{AUTHOR_ICON}" if author else "",
"UPDATED": f"{last_updated} (v{commit_count})" if commit_count > 1 else last_updated,
"PREVIEW_URL": preview_url,
"RELEASE_URL": release_url,
diff --git a/README.md b/README.md
index b81127f7..f64d5f4a 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,66 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](pages/custom/index.md) • [Remixed Themes](pages/remixed/index.md) • [Theme Icon Packs](pages/icons_themes/index.md) • [Standalone Icon Packs](pages/icons_standalone/index.md) • [Contributing](CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](generated/custom/index.md) • [Remixed Themes](generated/remixed/index.md) • [Theme Icon Packs](generated/icons_themes/index.md) • [Standalone Icon Packs](generated/icons_standalone/index.md) • [Contributing](CONTRIBUTING.md)
@@ -13,13 +71,13 @@
*Click on a section below to browse themes and icon packs*
-### [Custom Themes (156)](pages/custom/index.md)
+### [Custom Themes (156)](generated/custom/index.md)
-### [Remixed Themes (15)](pages/remixed/index.md)
+### [Remixed Themes (15)](generated/remixed/index.md)
-### [Theme Icon Packs (43)](pages/icons_themes/index.md)
+### [Theme Icon Packs (43)](generated/icons_themes/index.md)
-### [Standalone Icon Packs (7)](pages/icons_standalone/index.md)
+### [Standalone Icon Packs (7)](generated/icons_standalone/index.md)
@@ -54,7 +112,7 @@ Do you want to share your own custom themes with the community? ❤️
trash
-2024-03-13
+2024-03-13
@@ -90,7 +148,7 @@ Do you want to share your own custom themes with the community? ❤️
Sheezie
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -104,7 +162,7 @@ Do you want to share your own custom themes with the community? ❤️
MLOPEZMAD
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -118,7 +176,7 @@ Do you want to share your own custom themes with the community? ❤️
LamiaLazuli
-2024-05-18 (v2)
+2024-05-18 (v2)
diff --git a/pages/custom/index.md b/generated/custom/index.md
similarity index 88%
rename from pages/custom/index.md
rename to generated/custom/index.md
index f4b59253..6d0b3022 100644
--- a/pages/custom/index.md
+++ b/generated/custom/index.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 1 of 13**
-*Showing 1–12 of 156 items*
+*Page 1 of 13 — 156 items available*
@@ -44,7 +101,7 @@
trash
-2024-03-13
+2024-03-13
|
@@ -57,7 +114,7 @@
Alpatov Danila
-2024-03-11
+2024-03-11
@@ -81,7 +138,7 @@
Sheezie
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -94,7 +151,7 @@
Cyberbellum
-2024-02-16
+2024-02-16
@@ -106,7 +163,7 @@
MLOPEZMAD
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -131,7 +188,7 @@
LeonardoDaPinchy
-2024-02-12
+2024-02-12
@@ -143,7 +200,7 @@
LamiaLazuli
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -155,7 +212,7 @@
Jasminum C
-2024-01-30
+2024-01-30
@@ -167,10 +224,10 @@
-**01** [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+ **1** [ 2 ](page-02.md) [ 3 ](page-03.md) [ 4 ](page-04.md) [ 5 ](page-05.md) [ 6 ](page-06.md) [ 7 ](page-07.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-02.md)
+[NEXT PAGE ❯](page-02.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-02.md b/generated/custom/page-02.md
similarity index 87%
rename from pages/custom/page-02.md
rename to generated/custom/page-02.md
index b8212dd9..f9786f07 100644
--- a/pages/custom/page-02.md
+++ b/generated/custom/page-02.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 2 of 13**
-*Showing 13–24 of 156 items*
+*Page 2 of 13 — 156 items available*
@@ -20,7 +77,7 @@
Sheezie
-2024-01-27
+2024-01-27
|
@@ -32,7 +89,7 @@
LeonardoDaPinchy
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -44,7 +101,7 @@
MLOPEZMAD
-2024-01-27 (v2)
+2024-01-27 (v2)
@@ -57,7 +114,7 @@
RetroReef
-2024-01-24
+2024-01-24
@@ -69,7 +126,7 @@
Myth + Solsta
-2024-01-29 (v3)
+2024-01-29 (v3)
@@ -94,7 +151,7 @@
MLOPEZMAD
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -106,7 +163,7 @@
Sheezie
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -118,7 +175,7 @@
uchebo_bro
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -131,7 +188,7 @@
MLOPEZMAD
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -143,7 +200,7 @@
ShrimpFandangle
-2024-01-01
+2024-01-01
@@ -155,7 +212,7 @@
ShrimpFandangle
-2024-01-01
+2024-01-01
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](index.md)
+[❮ PREV PAGE](index.md)
|
-[01](index.md) **02** [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) **2** [ 3 ](page-03.md) [ 4 ](page-04.md) [ 5 ](page-05.md) [ 6 ](page-06.md) [ 7 ](page-07.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-03.md)
+[NEXT PAGE ❯](page-03.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-03.md b/generated/custom/page-03.md
similarity index 86%
rename from pages/custom/page-03.md
rename to generated/custom/page-03.md
index 4d7a9e7c..a9b75557 100644
--- a/pages/custom/page-03.md
+++ b/generated/custom/page-03.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 3 of 13**
-*Showing 25–36 of 156 items*
+*Page 3 of 13 — 156 items available*
@@ -20,7 +77,7 @@
ShrimpFandangle
-2024-01-01
+2024-01-01
|
@@ -44,7 +101,7 @@
anthr_alxndr
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -57,7 +114,7 @@
tenlevels
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -69,7 +126,7 @@
toski
-2023-11-05
+2023-11-05
@@ -81,7 +138,7 @@
Oclain
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -94,7 +151,7 @@
Skimpertushi
-2023-10-03
+2023-10-03
@@ -106,7 +163,7 @@
bantam
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -118,7 +175,7 @@
Tom Tower
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -131,7 +188,7 @@
Sheezie
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -155,7 +212,7 @@
parkinglotmusic
-2023-08-08
+2023-08-08
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-02.md)
+[❮ PREV PAGE](page-02.md)
|
-[01](index.md) [02](page-02.md) **03** [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) [ 2 ](page-02.md) **3** [ 4 ](page-04.md) [ 5 ](page-05.md) [ 6 ](page-06.md) [ 7 ](page-07.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-04.md)
+[NEXT PAGE ❯](page-04.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-04.md b/generated/custom/page-04.md
similarity index 87%
rename from pages/custom/page-04.md
rename to generated/custom/page-04.md
index a0757dbe..94b59234 100644
--- a/pages/custom/page-04.md
+++ b/generated/custom/page-04.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 4 of 13**
-*Showing 37–48 of 156 items*
+*Page 4 of 13 — 156 items available*
@@ -32,7 +89,7 @@
TooGeekCreations
-2024-05-18 (v3)
+2024-05-18 (v3)
|
@@ -44,7 +101,7 @@
ElectRefurbish
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -57,7 +114,7 @@
Bernig
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -69,7 +126,7 @@
ElectRefurbish
-2024-05-18 (v2)
+2024-05-18 (v2)
@@ -143,7 +200,7 @@
UnBurn
-2024-05-18 (v6)
+2024-05-18 (v6)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-03.md)
+[❮ PREV PAGE](page-03.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) **04** [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) [ 2 ](page-02.md) [ 3 ](page-03.md) **4** [ 5 ](page-05.md) [ 6 ](page-06.md) [ 7 ](page-07.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-05.md)
+[NEXT PAGE ❯](page-05.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-05.md b/generated/custom/page-05.md
similarity index 88%
rename from pages/custom/page-05.md
rename to generated/custom/page-05.md
index 57aab00f..c0641883 100644
--- a/pages/custom/page-05.md
+++ b/generated/custom/page-05.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 5 of 13**
-*Showing 49–60 of 156 items*
+*Page 5 of 13 — 156 items available*
@@ -69,7 +126,7 @@
ytdcpndsgn
-2024-05-18 (v2)
+2024-05-18 (v2)
|
@@ -131,7 +188,7 @@
Segich
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -143,7 +200,7 @@
Dreambrace
-2023-03-20
+2023-03-20
@@ -155,7 +212,7 @@
hanessh4
-2024-05-18 (v5)
+2024-05-18 (v5)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-04.md)
+[❮ PREV PAGE](page-04.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) **05** [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) [ 2 ](page-02.md) [ 3 ](page-03.md) [ 4 ](page-04.md) **5** [ 6 ](page-06.md) [ 7 ](page-07.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-06.md)
+[NEXT PAGE ❯](page-06.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-06.md b/generated/custom/page-06.md
similarity index 87%
rename from pages/custom/page-06.md
rename to generated/custom/page-06.md
index ea4563e4..1d7c581c 100644
--- a/pages/custom/page-06.md
+++ b/generated/custom/page-06.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 6 of 13**
-*Showing 61–72 of 156 items*
+*Page 6 of 13 — 156 items available*
@@ -20,7 +77,7 @@
TechDweeb
-2024-05-18 (v6)
+2024-05-18 (v6)
|
@@ -32,7 +89,7 @@
Oclain
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -44,7 +101,7 @@
tenlevels
-2024-05-18 (v6)
+2024-05-18 (v6)
@@ -81,7 +138,7 @@
tenlevels
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -106,7 +163,7 @@
Deepslackerjazz
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -131,7 +188,7 @@
tenlevels
-2024-05-18 (v4)
+2024-05-18 (v4)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-05.md)
+[❮ PREV PAGE](page-05.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) **06** [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 4 ](page-04.md) [ 5 ](page-05.md) **6** [ 7 ](page-07.md) [ 8 ](page-08.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-07.md)
+[NEXT PAGE ❯](page-07.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-07.md b/generated/custom/page-07.md
similarity index 88%
rename from pages/custom/page-07.md
rename to generated/custom/page-07.md
index 3e3324aa..aae09b5b 100644
--- a/pages/custom/page-07.md
+++ b/generated/custom/page-07.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 7 of 13**
-*Showing 73–84 of 156 items*
+*Page 7 of 13 — 156 items available*
@@ -20,7 +77,7 @@
AccomplishedSir
-2024-05-18 (v2)
+2024-05-18 (v2)
|
@@ -143,7 +200,7 @@
tenlevels
-2024-05-18 (v6)
+2024-05-18 (v6)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-06.md)
+[❮ PREV PAGE](page-06.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) **07** [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 5 ](page-05.md) [ 6 ](page-06.md) **7** [ 8 ](page-08.md) [ 9 ](page-09.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-08.md)
+[NEXT PAGE ❯](page-08.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-08.md b/generated/custom/page-08.md
similarity index 88%
rename from pages/custom/page-08.md
rename to generated/custom/page-08.md
index 1f746e51..268ccecd 100644
--- a/pages/custom/page-08.md
+++ b/generated/custom/page-08.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 8 of 13**
-*Showing 85–96 of 156 items*
+*Page 8 of 13 — 156 items available*
@@ -118,7 +175,7 @@
tenlevels
-2024-05-18 (v9)
+2024-05-18 (v9)
|
@@ -131,7 +188,7 @@
TheDewd
-2024-05-18 (v9)
+2024-05-18 (v9)
@@ -143,7 +200,7 @@
Amdy
-2024-05-18 (v4)
+2024-05-18 (v4)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-07.md)
+[❮ PREV PAGE](page-07.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) **08** [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 6 ](page-06.md) [ 7 ](page-07.md) **8** [ 9 ](page-09.md) [ 10 ](page-10.md) … [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-09.md)
+[NEXT PAGE ❯](page-09.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-09.md b/generated/custom/page-09.md
similarity index 88%
rename from pages/custom/page-09.md
rename to generated/custom/page-09.md
index 885a6482..10d09639 100644
--- a/pages/custom/page-09.md
+++ b/generated/custom/page-09.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 9 of 13**
-*Showing 97–108 of 156 items*
+*Page 9 of 13 — 156 items available*
@@ -32,7 +89,7 @@
Aemiii91
-2024-05-18 (v10)
+2024-05-18 (v10)
|
@@ -143,7 +200,7 @@
Jeltron
-2024-05-18 (v9)
+2024-05-18 (v9)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-08.md)
+[❮ PREV PAGE](page-08.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) **09** [10](page-10.md) [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 7 ](page-07.md) [ 8 ](page-08.md) **9** [ 10 ](page-10.md) [ 11 ](page-11.md) [ 12 ](page-12.md) [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-10.md)
+[NEXT PAGE ❯](page-10.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-10.md b/generated/custom/page-10.md
similarity index 87%
rename from pages/custom/page-10.md
rename to generated/custom/page-10.md
index 96ebd4b5..403942be 100644
--- a/pages/custom/page-10.md
+++ b/generated/custom/page-10.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 10 of 13**
-*Showing 109–120 of 156 items*
+*Page 10 of 13 — 156 items available*
@@ -81,7 +138,7 @@
Aemiii91
-2024-05-18 (v16)
+2024-05-18 (v16)
|
@@ -106,7 +163,7 @@
Aemiii91
-2024-05-18 (v10)
+2024-05-18 (v10)
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-09.md)
+[❮ PREV PAGE](page-09.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) **10** [11](page-11.md) [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 7 ](page-07.md) [ 8 ](page-08.md) [ 9 ](page-09.md) **10** [ 11 ](page-11.md) [ 12 ](page-12.md) [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-11.md)
+[NEXT PAGE ❯](page-11.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-11.md b/generated/custom/page-11.md
similarity index 88%
rename from pages/custom/page-11.md
rename to generated/custom/page-11.md
index 2a826061..564f8ef4 100644
--- a/pages/custom/page-11.md
+++ b/generated/custom/page-11.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 11 of 13**
-*Showing 121–132 of 156 items*
+*Page 11 of 13 — 156 items available*
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-10.md)
+[❮ PREV PAGE](page-10.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) **11** [12](page-12.md) [13](page-13.md)
+[ 1 ](index.md) … [ 7 ](page-07.md) [ 8 ](page-08.md) [ 9 ](page-09.md) [ 10 ](page-10.md) **11** [ 12 ](page-12.md) [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-12.md)
+[NEXT PAGE ❯](page-12.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-12.md b/generated/custom/page-12.md
similarity index 87%
rename from pages/custom/page-12.md
rename to generated/custom/page-12.md
index 29937775..b5d20256 100644
--- a/pages/custom/page-12.md
+++ b/generated/custom/page-12.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 12 of 13**
-*Showing 133–144 of 156 items*
+*Page 12 of 13 — 156 items available*
@@ -167,14 +224,14 @@
-[◀ PREV PAGE](page-11.md)
+[❮ PREV PAGE](page-11.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) **12** [13](page-13.md)
+[ 1 ](index.md) … [ 7 ](page-07.md) [ 8 ](page-08.md) [ 9 ](page-09.md) [ 10 ](page-10.md) [ 11 ](page-11.md) **12** [ 13 ](page-13.md)
|
-[NEXT PAGE ▶](page-13.md)
+[NEXT PAGE ❯](page-13.md)
|
\ No newline at end of file
diff --git a/pages/custom/page-13.md b/generated/custom/page-13.md
similarity index 88%
rename from pages/custom/page-13.md
rename to generated/custom/page-13.md
index 733671c0..bc0004f5 100644
--- a/pages/custom/page-13.md
+++ b/generated/custom/page-13.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • **Custom Themes** • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Custom Themes
-**Page 13 of 13**
-*Showing 145–156 of 156 items*
+*Page 13 of 13 — 156 items available*
@@ -167,10 +224,10 @@
-[◀ PREV PAGE](page-12.md)
+[❮ PREV PAGE](page-12.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) [04](page-04.md) [05](page-05.md) [06](page-06.md) [07](page-07.md) [08](page-08.md) [09](page-09.md) [10](page-10.md) [11](page-11.md) [12](page-12.md) **13**
+[ 1 ](index.md) … [ 7 ](page-07.md) [ 8 ](page-08.md) [ 9 ](page-09.md) [ 10 ](page-10.md) [ 11 ](page-11.md) [ 12 ](page-12.md) **13**
|
\ No newline at end of file
diff --git a/pages/icons_standalone/index.md b/generated/icons_standalone/index.md
similarity index 76%
rename from pages/icons_standalone/index.md
rename to generated/icons_standalone/index.md
index 6e63ae7a..dd45c1d2 100644
--- a/pages/icons_standalone/index.md
+++ b/generated/icons_standalone/index.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • **Standalone Icon Packs** • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • [Theme Icon Packs](../icons_themes/index.md) • **Standalone Icon Packs** • [Contributing](../../CONTRIBUTING.md)
## Standalone Icon Packs
-**Page 1 of 1**
-*Showing 1–7 of 7 items*
+*Page 1 of 1 — 7 items available*
diff --git a/pages/icons_themes/index.md b/generated/icons_themes/index.md
similarity index 77%
rename from pages/icons_themes/index.md
rename to generated/icons_themes/index.md
index fe82cab4..9f10a45d 100644
--- a/pages/icons_themes/index.md
+++ b/generated/icons_themes/index.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Theme Icon Packs
-**Page 1 of 4**
-*Showing 1–12 of 43 items*
+*Page 1 of 5 — 43 items available*
@@ -132,46 +189,6 @@
-
-
-
-
-#### M-NOIR by tenlevels
-
-![M-NOIR by tenlevels](../../themes/M-NOIR%20by%20tenlevels/icons/preview.png)
-
-[Download M-NOIR by tenlevels (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/M-NOIR%20by%20tenlevels.zip)
-
-53/54 icons (98% complete)
-
-
|
-
-
-
-
-#### Fake Pocket by Oclain
-
-![Fake Pocket by Oclain](../../themes/Fake%20Pocket%20by%20Oclain/icons/preview.png)
-
-[Download Fake Pocket by Oclain (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Fake%20Pocket%20by%20Oclain.zip)
-
-54/54 icons (100% complete)
-
-
|
-
-
-
-
-#### Neumorphism-Black by bantam
-
-![Neumorphism-Black by bantam](../../themes/Neumorphism%20%283-pack%29%20by%20bantam/Neumorphism-Black%20by%20bantam/icons/preview.png)
-
-[Download Neumorphism (3-pack) by bantam (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Neumorphism%20%283-pack%29%20by%20bantam.zip)
-
-53/54 icons (98% complete)
-
-
|
-
@@ -180,10 +197,10 @@
-**01** [02](page-02.md) [03](page-03.md) [04](page-04.md)
+ **1** [ 2 ](page-02.md) [ 3 ](page-03.md) [ 4 ](page-04.md) [ 5 ](page-05.md)
|
-[NEXT PAGE ▶](page-02.md)
+[NEXT PAGE ❯](page-02.md)
|
\ No newline at end of file
diff --git a/generated/icons_themes/page-02.md b/generated/icons_themes/page-02.md
new file mode 100644
index 00000000..e69c254b
--- /dev/null
+++ b/generated/icons_themes/page-02.md
@@ -0,0 +1,210 @@
+
+
+
+#
+
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+
+
+
+
+## Theme Icon Packs
+
+*Page 2 of 5 — 43 items available*
+
+
+
+
+
+#### M-NOIR by tenlevels
+
+![M-NOIR by tenlevels](../../themes/M-NOIR%20by%20tenlevels/icons/preview.png)
+
+[Download M-NOIR by tenlevels (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/M-NOIR%20by%20tenlevels.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+#### Fake Pocket by Oclain
+
+![Fake Pocket by Oclain](../../themes/Fake%20Pocket%20by%20Oclain/icons/preview.png)
+
+[Download Fake Pocket by Oclain (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Fake%20Pocket%20by%20Oclain.zip)
+
+54/54 icons (100% complete)
+
+
|
+
+
+
+
+#### Neumorphism-Black by bantam
+
+![Neumorphism-Black by bantam](../../themes/Neumorphism%20%283-pack%29%20by%20bantam/Neumorphism-Black%20by%20bantam/icons/preview.png)
+
+[Download Neumorphism (3-pack) by bantam (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Neumorphism%20%283-pack%29%20by%20bantam.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+
+#### Neumorphism-White by bantam
+
+![Neumorphism-White by bantam](../../themes/Neumorphism%20%283-pack%29%20by%20bantam/Neumorphism-White%20by%20bantam/icons/preview.png)
+
+[Download Neumorphism (3-pack) by bantam (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Neumorphism%20%283-pack%29%20by%20bantam.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+#### Neumorphism-Yellow by bantam
+
+![Neumorphism-Yellow by bantam](../../themes/Neumorphism%20%283-pack%29%20by%20bantam/Neumorphism-Yellow%20by%20bantam/icons/preview.png)
+
+[Download Neumorphism (3-pack) by bantam (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Neumorphism%20%283-pack%29%20by%20bantam.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+#### NBA Onion by Tom Tower
+
+![NBA Onion by Tom Tower](../../themes/NBA%20Onion%20by%20Tom%20Tower/icons/preview.png)
+
+[Download NBA Onion by Tom Tower (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/NBA%20Onion%20by%20Tom%20Tower.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+
+#### 2CleanMini by Sheezie
+
+![2CleanMini by Sheezie](../../themes/2CleanMini%20by%20Sheezie/icons/preview.png)
+
+[Download 2CleanMini by Sheezie (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/2CleanMini%20by%20Sheezie.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+#### RetroRama by TooGeekCreations
+
+![RetroRama by TooGeekCreations](../../themes/RetroRama%20by%20TooGeekCreations/icons/preview.png)
+
+[Download RetroRama by TooGeekCreations (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/RetroRama%20by%20TooGeekCreations.zip)
+
+54/54 icons (100% complete)
+
+
|
+
+
+
+
+#### Blank Space Inverted by ElectRefurbish
+
+![Blank Space Inverted by ElectRefurbish](../../themes/Blank%20Space%20Inverted%20by%20ElectRefurbish/icons/preview.png)
+
+[Download Blank Space Inverted by ElectRefurbish (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Blank%20Space%20Inverted%20by%20ElectRefurbish.zip)
+
+53/54 icons (98% complete)
+
+
|
+
+
+
+
+
+---
+
+
+
+[❮ PREV PAGE](index.md)
+
+ |
+
+[ 1 ](index.md) **2** [ 3 ](page-03.md) [ 4 ](page-04.md) [ 5 ](page-05.md)
+
+ |
+
+[NEXT PAGE ❯](page-03.md)
+
+ |
\ No newline at end of file
diff --git a/pages/icons_themes/page-02.md b/generated/icons_themes/page-03.md
similarity index 56%
rename from pages/icons_themes/page-02.md
rename to generated/icons_themes/page-03.md
index 48890592..fbef3d23 100644
--- a/pages/icons_themes/page-02.md
+++ b/generated/icons_themes/page-03.md
@@ -1,98 +1,75 @@
-
+
+
-![Blank Space Inverted by ElectRefurbish](../../themes/Blank%20Space%20Inverted%20by%20ElectRefurbish/icons/preview.png)
+#
-[Download Blank Space Inverted by ElectRefurbish (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Blank%20Space%20Inverted%20by%20ElectRefurbish.zip)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
-53/54 icons (98% complete)
+
-
-
+## Theme Icon Packs
+
+*Page 3 of 5 — 43 items available*
+
+
@@ -104,7 +81,7 @@
54/54 icons (100% complete)
-
|
+
@@ -117,7 +94,7 @@
53/54 icons (98% complete)
-
|
+
@@ -130,7 +107,7 @@
53/54 icons (98% complete)
-
|
+
@@ -172,6 +149,46 @@
+
+
+
+
+#### TechDweeb by TechDweeb
+
+![TechDweeb by TechDweeb](../../themes/TechDweeb%20by%20TechDweeb/icons/preview.png)
+
+[Download TechDweeb by TechDweeb (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/TechDweeb%20by%20TechDweeb.zip)
+
+54/54 icons (100% complete)
+
+
|
+
+
+
+
+#### Fake DMG Classic by Oclain
+
+![Fake DMG Classic by Oclain](../../themes/Fake%20DMG%20Classic%20by%20Oclain/icons/preview.png)
+
+[Download Fake DMG Classic by Oclain (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/Fake%20DMG%20Classic%20by%20Oclain.zip)
+
+54/54 icons (100% complete)
+
+
|
+
+
+
+
+#### M by tenlevels
+
+![M by tenlevels](../../themes/M%20by%20tenlevels/icons/preview.png)
+
+[Download M by tenlevels (theme)](https://raw.githubusercontent.com/OnionUI/Themes/main/release/M%20by%20tenlevels.zip)
+
+54/54 icons (100% complete)
+
+
|
+
@@ -180,14 +197,14 @@
-[◀ PREV PAGE](index.md)
+[❮ PREV PAGE](page-02.md)
|
-[01](index.md) **02** [03](page-03.md) [04](page-04.md)
+[ 1 ](index.md) [ 2 ](page-02.md) **3** [ 4 ](page-04.md) [ 5 ](page-05.md)
|
-[NEXT PAGE ▶](page-03.md)
+[NEXT PAGE ❯](page-04.md)
|
\ No newline at end of file
diff --git a/pages/icons_themes/page-03.md b/generated/icons_themes/page-04.md
similarity index 76%
rename from pages/icons_themes/page-03.md
rename to generated/icons_themes/page-04.md
index 539791be..15d0b1cb 100644
--- a/pages/icons_themes/page-03.md
+++ b/generated/icons_themes/page-04.md
@@ -1,58 +1,75 @@
-
+
+
+
+#
+
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+
+
+
+
+## Theme Icon Packs
+
+*Page 4 of 5 — 43 items available*
+
+
@@ -64,7 +81,7 @@
53/54 icons (98% complete)
-
|
+
@@ -77,7 +94,7 @@
27/54 icons (50% complete)
-
|
+
@@ -90,7 +107,7 @@
54/54 icons (100% complete)
-
|
+
@@ -180,14 +197,14 @@
-[◀ PREV PAGE](page-02.md)
+[❮ PREV PAGE](page-03.md)
|
-[01](index.md) [02](page-02.md) **03** [04](page-04.md)
+[ 1 ](index.md) [ 2 ](page-02.md) [ 3 ](page-03.md) **4** [ 5 ](page-05.md)
|
-[NEXT PAGE ▶](page-04.md)
+[NEXT PAGE ❯](page-05.md)
|
\ No newline at end of file
diff --git a/pages/icons_themes/page-04.md b/generated/icons_themes/page-05.md
similarity index 78%
rename from pages/icons_themes/page-04.md
rename to generated/icons_themes/page-05.md
index d00a4887..4e3d0fd3 100644
--- a/pages/icons_themes/page-04.md
+++ b/generated/icons_themes/page-05.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • [Remixed Themes](../remixed/index.md) • **Theme Icon Packs** • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Theme Icon Packs
-**Page 4 of 4**
-*Showing 37–43 of 43 items*
+*Page 5 of 5 — 43 items available*
@@ -114,10 +171,10 @@
-[◀ PREV PAGE](page-03.md)
+[❮ PREV PAGE](page-04.md)
|
-[01](index.md) [02](page-02.md) [03](page-03.md) **04**
+[ 1 ](index.md) [ 2 ](page-02.md) [ 3 ](page-03.md) [ 4 ](page-04.md) **5**
|
\ No newline at end of file
diff --git a/pages/remixed/index.md b/generated/remixed/index.md
similarity index 89%
rename from pages/remixed/index.md
rename to generated/remixed/index.md
index eaf1556f..6f0ba4cd 100644
--- a/pages/remixed/index.md
+++ b/generated/remixed/index.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • **Remixed Themes** • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • **Remixed Themes** • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Remixed Themes
-**Page 1 of 2**
-*Showing 1–12 of 15 items*
+*Page 1 of 2 — 15 items available*
@@ -20,7 +77,7 @@
Bernig + LeonardoDaPinchy
-2024-05-18 (v3)
+2024-05-18 (v3)
|
@@ -32,7 +89,7 @@
ZaxxonQ
-2023-11-28
+2023-11-28
@@ -44,7 +101,7 @@
TheDewd + Quack Walks
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -57,7 +114,7 @@
Amdy + Cheetashock
-2024-05-18 (v3)
+2024-05-18 (v3)
@@ -69,7 +126,7 @@
Segich + Nemi
-2023-06-16
+2023-06-16
@@ -167,10 +224,10 @@
-**01** [02](page-02.md)
+ **1** [ 2 ](page-02.md)
|
-[NEXT PAGE ▶](page-02.md)
+[NEXT PAGE ❯](page-02.md)
|
\ No newline at end of file
diff --git a/pages/remixed/page-02.md b/generated/remixed/page-02.md
similarity index 74%
rename from pages/remixed/page-02.md
rename to generated/remixed/page-02.md
index 6b288c0e..cd297582 100644
--- a/pages/remixed/page-02.md
+++ b/generated/remixed/page-02.md
@@ -1,16 +1,73 @@
+
#
-*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • **Remixed Themes** • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
+*The Onion Theme Repository* • [Custom Themes](../custom/index.md) • **Remixed Themes** • [Theme Icon Packs](../icons_themes/index.md) • [Standalone Icon Packs](../icons_standalone/index.md) • [Contributing](../../CONTRIBUTING.md)
## Remixed Themes
-**Page 2 of 2**
-*Showing 13–15 of 15 items*
+*Page 2 of 2 — 15 items available*
@@ -56,10 +113,10 @@
-[◀ PREV PAGE](index.md)
+[❮ PREV PAGE](index.md)
|
-[01](index.md) **02**
+[ 1 ](index.md) **2**
|
\ No newline at end of file
|
|
|
|