Created
May 21, 2025 21:58
-
-
Save sht0rmx/0fcadb1c4bb6a5746be31ef33ac5d0e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>MyPkg — Пакетный менеджер</title> | |
| <style> | |
| :root { | |
| color-scheme: dark; | |
| --bg: #0d1117; | |
| --fg: #c9d1d9; | |
| --accent: #58a6ff; | |
| --muted: #8b949e; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| background: var(--bg); | |
| color: var(--fg); | |
| font-family: 'Segoe UI', sans-serif; | |
| line-height: 1.6; | |
| } | |
| header { | |
| padding: 2rem; | |
| text-align: center; | |
| background: #161b22; | |
| border-bottom: 1px solid #30363d; | |
| } | |
| header h1 { | |
| font-size: 2.5rem; | |
| margin-bottom: 0.5rem; | |
| } | |
| header p { | |
| color: var(--muted); | |
| max-width: 600px; | |
| margin: 0 auto; | |
| } | |
| main { | |
| max-width: 800px; | |
| margin: 2rem auto; | |
| padding: 0 1rem; | |
| } | |
| section { | |
| margin-bottom: 2.5rem; | |
| } | |
| h2 { | |
| color: var(--accent); | |
| font-size: 1.5rem; | |
| border-bottom: 1px solid #30363d; | |
| padding-bottom: 0.3rem; | |
| } | |
| code, pre { | |
| background: #161b22; | |
| padding: 0.3rem 0.6rem; | |
| border-radius: 6px; | |
| font-family: monospace; | |
| font-size: 0.95rem; | |
| } | |
| pre { | |
| display: block; | |
| overflow-x: auto; | |
| margin: 1rem 0; | |
| } | |
| a { | |
| color: var(--accent); | |
| text-decoration: none; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| } | |
| footer { | |
| text-align: center; | |
| padding: 2rem; | |
| font-size: 0.9rem; | |
| color: var(--muted); | |
| border-top: 1px solid #30363d; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>Nikel Packet Manager</h1> | |
| <p>Лёгкий и гибкий пакетный менеджер с GitHub-интеграцией и собственной инфраструктурой.</p> | |
| </header> | |
| <main> | |
| <section> | |
| <h2>🚀 Установка</h2> | |
| <pre><code>Работает с NikelCli и NikelTerminal. Ничего ставить не надо!</code></pre> | |
| </section> | |
| <section> | |
| <h2>📦 Пример использования</h2> | |
| <pre><code>nikel -S [pkg] | |
| nikel -I [pkg] | |
| help nikel</code></pre> | |
| </section> | |
| <section> | |
| <h2>🔗 GitHub</h2> | |
| <p>Исходный код доступен на <a href="https://github.com/NikelCli" target="_blank">GitHub</a>.</p> | |
| </section> | |
| <section> | |
| <h2>📫 Контакты</h2> | |
| <p>По вопросам сотрудничества или багов: <a href="https://t.me/plojx">@plojx</a></p> | |
| </section> | |
| </main> | |
| <footer> | |
| © 2025 NikelCli. Made with ❤️❤️❤️ | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment