diff --git a/_TEMPLATE.md b/_TEMPLATE.md
deleted file mode 100644
index 0f475cca..00000000
--- a/_TEMPLATE.md
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
🟣 Dashboard Icons
-
-
-
-
-
-
- 🚀 The best place to find icons for your dashboards.
-
- 👀 See the icons • 🙌🏻 Donate
-
-
-
-
-
-# 📖 Table of Contents
-
-- [🚀 Getting Started](#-getting-started)
- - [📊 Dashboards](#-dashboards)
- - [🛠️ Installation](#️-installation)
-- [🎨 Icons](#-icons)
-- [🎉 Contributing Guidelines](#-contributing-guidelines)
-- [📜 Legal](#-legal)
-
-## 🚀 Getting Started
-
-### 📊 Dashboards
-
-There are many Dashboards available that you can use with Dashboard Icons. Here are some of the popular ones.
-
-- [Homarr](https://github.com/ajnart/homarr)\*
-- [Dashy](https://github.com/Lissy93/dashy)\*
-- [Homer Dashboard](https://github.com/bastienwirtz/homer)
-- [Heimdall](https://github.com/linuxserver/Heimdall)
-- [Organizr(v2)](https://github.com/causefx/Organizr)
-- [Flame](https://github.com/pawelmalak/flame)
-- [SUI](https://github.com/jeroenpardon/sui)
-- [Homepage](https://github.com/benphelps/homepage)\*
-
-**Note:** Dashboards with a \* have native integration with Dashboard Icons.
-
-### 🛠️ Installation
-
-**Tip!** You can access Dashboard Icons online, faster, by using `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`. Just replace `example` with the name of the icon!
-
-To download an icon, simply `Right click > Save image`.
-
-For non-desktop operating systems or people who prefer to use the terminal:
-
-```sh
-$ curl https://raw.githubusercontent.com/walkxcode/dashboard-icons/master/png/example.png > example.png
-```
-
-or
-
-```sh
-$ wget https://raw.githubusercontent.com/walkxcode/dashboard-icons/master/png/example.png -O example.png
-```
-
-## 🎨 Icons
-
- Click to display all icons 👀
-
-
-
-
-## 🎉 Contributing Guidelines
-Please read the [Contributing Guidelines](CONTRIBUTING.md) before contributing to this project.
-
-## 📜 Legal
-
-(Almost) All product names, trademarks, and registered trademarks in the images in this repository are the property of their respective owners. All images in this repository are used by the users of the Dashboard Icons project for identification purposes only.
-
-The use of these names, trademarks, and brands appearing in these image files does not imply endorsement.
diff --git a/_ICONS_TEMPLATE.md b/config/TEMPLATE.md
similarity index 100%
rename from _ICONS_TEMPLATE.md
rename to config/TEMPLATE.md
diff --git a/_banner.png b/config/banner.png
similarity index 100%
rename from _banner.png
rename to config/banner.png
diff --git a/_ci.py b/config/ci.py
similarity index 79%
rename from _ci.py
rename to config/ci.py
index d0efaa23..5573b01f 100644
--- a/_ci.py
+++ b/config/ci.py
@@ -2,8 +2,8 @@ import pathlib
from pathlib import Path
root = pathlib.Path(__file__).parent.resolve()
-icons_template_path = root / "_ICONS_TEMPLATE.md"
-icons_path = root / "ICONS.md"
+template_path = root / "TEMPLATE.md"
+path = root / "../ICONS.md"
def generate_img_tag(file):
@@ -15,7 +15,7 @@ img_tags = [generate_img_tag(x) for x in imgs]
line_number = 0
# Read the template file
-with open(icons_template_path, "r", encoding="UTF-8") as f:
+with open(template_path, "r", encoding="UTF-8") as f:
lines = f.readlines()
# Find the line that starts with ""
for line in lines:
@@ -25,7 +25,7 @@ for line in lines:
# Insert the icons after the line
lines.insert(line_number + 1, " ".join(img_tags))
# Write the new file
-with open(icons_path, "w", encoding="UTF-8") as f:
+with open(path, "w", encoding="UTF-8") as f:
f.write("".join(lines))
f.write("\n")
print("Done!")
diff --git a/_logo.png b/config/logo.png
similarity index 100%
rename from _logo.png
rename to config/logo.png