|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 7 | + <title>STRUCT - Automated Project Structure Generator</title> |
| 8 | + <style> |
| 9 | + /* Reset and base styles */ |
| 10 | + * { |
| 11 | + margin: 0; |
| 12 | + padding: 0; |
| 13 | + box-sizing: border-box; |
| 14 | + } |
| 15 | + |
| 16 | + body { |
| 17 | + background-color: #121212; |
| 18 | + color: #e0e0e0; |
| 19 | + font-family: Arial, sans-serif; |
| 20 | + line-height: 1.6; |
| 21 | + padding: 20px; |
| 22 | + } |
| 23 | + |
| 24 | + header { |
| 25 | + text-align: center; |
| 26 | + padding: 40px 0; |
| 27 | + } |
| 28 | + |
| 29 | + header h1 { |
| 30 | + font-size: 3em; |
| 31 | + margin-bottom: 10px; |
| 32 | + color: #ffffff; |
| 33 | + } |
| 34 | + |
| 35 | + header p { |
| 36 | + font-size: 1.2em; |
| 37 | + color: #bbbbbb; |
| 38 | + } |
| 39 | + |
| 40 | + .container { |
| 41 | + max-width: 800px; |
| 42 | + margin: 0 auto; |
| 43 | + text-align: center; |
| 44 | + } |
| 45 | + |
| 46 | + section { |
| 47 | + margin: 40px 0; |
| 48 | + } |
| 49 | + |
| 50 | + section h2 { |
| 51 | + font-size: 2em; |
| 52 | + margin-bottom: 20px; |
| 53 | + color: #ffffff; |
| 54 | + } |
| 55 | + |
| 56 | + ul { |
| 57 | + list-style: none; |
| 58 | + padding: 0; |
| 59 | + text-align: left; |
| 60 | + } |
| 61 | + |
| 62 | + ul li { |
| 63 | + background: #1e1e1e; |
| 64 | + margin: 10px 0; |
| 65 | + padding: 15px; |
| 66 | + border-radius: 5px; |
| 67 | + } |
| 68 | + |
| 69 | + .btn { |
| 70 | + display: inline-block; |
| 71 | + padding: 15px 30px; |
| 72 | + margin: 20px 10px; |
| 73 | + font-size: 1em; |
| 74 | + font-weight: bold; |
| 75 | + text-decoration: none; |
| 76 | + border-radius: 5px; |
| 77 | + transition: background-color 0.3s ease; |
| 78 | + } |
| 79 | + |
| 80 | + .btn-github { |
| 81 | + background-color: #24292e; |
| 82 | + color: #ffffff; |
| 83 | + } |
| 84 | + |
| 85 | + .btn-github:hover { |
| 86 | + background-color: #444c56; |
| 87 | + } |
| 88 | + |
| 89 | + .btn-paypal { |
| 90 | + background-color: #ffc439; |
| 91 | + color: #000000; |
| 92 | + } |
| 93 | + |
| 94 | + .btn-paypal:hover { |
| 95 | + background-color: #ffb347; |
| 96 | + } |
| 97 | + |
| 98 | + footer { |
| 99 | + margin-top: 40px; |
| 100 | + text-align: center; |
| 101 | + font-size: 0.9em; |
| 102 | + color: #777777; |
| 103 | + } |
| 104 | + </style> |
| 105 | +</head> |
| 106 | + |
| 107 | +<body> |
| 108 | + <header> |
| 109 | + <h1>STRUCT</h1> |
| 110 | + <p>Automated Project Structure Generator</p> |
| 111 | + </header> |
| 112 | + <div class="container"> |
| 113 | + <p> |
| 114 | + Welcome to the official website of STRUCT. Generate your project structures effortlessly using YAML |
| 115 | + configurations. |
| 116 | + </p> |
| 117 | + |
| 118 | + <section id="features"> |
| 119 | + <h2>Features</h2> |
| 120 | + <ul> |
| 121 | + <li><strong>YAML Configuration:</strong> Define your project structure in a simple YAML file.</li> |
| 122 | + <li><strong>Template Variables:</strong> Use placeholders and custom filters for dynamic content.</li> |
| 123 | + <li><strong>Custom File Permissions:</strong> Set permissions directly from the YAML configuration.</li> |
| 124 | + <li><strong>Remote Content Fetching:</strong> Include content from remote sources effortlessly.</li> |
| 125 | + <li><strong>File Handling Strategies:</strong> Choose from overwrite, skip, append, rename, or backup options. |
| 126 | + </li> |
| 127 | + <li><strong>Dry Run:</strong> Preview actions without making changes.</li> |
| 128 | + <li><strong>Configuration Validation:</strong> Validate your YAML file before execution.</li> |
| 129 | + <li><strong>Verbose Logging:</strong> Access detailed logs for debugging and monitoring.</li> |
| 130 | + </ul> |
| 131 | + </section> |
| 132 | + |
| 133 | + <div> |
| 134 | + <a class="btn btn-github" href="https://github.com/httpdss/struct" target="_blank">Visit GitHub Repository</a> |
| 135 | + <a class="btn btn-paypal" href="https://www.paypal.me/httpdss" |
| 136 | + target="_blank">Donate via PayPal</a> |
| 137 | + </div> |
| 138 | + </div> |
| 139 | + <footer> |
| 140 | + <p>© 2025 STRUCT. All rights reserved.</p> |
| 141 | + </footer> |
| 142 | +</body> |
| 143 | + |
| 144 | +</html> |
0 commit comments