Design and logic for user-facing site https://exmods.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
2.3KB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="theme-color" content="#20c420" />
  5. <meta name="author" content="Exmods community" />
  6. <meta name="keywords" content="exmods,techblox,modding,mod" />
  7. <meta name="og:type" content="website" />
  8. <meta name="og:title" content="Exmods" />
  9. <meta name="og:description" content="Techblox modding website" />
  10. <meta name="description" content="Techblox modding website" />
  11. <meta name="og:image" content="../static/favicon.png" />
  12. <meta name="og:url" content="https://www.exmods.org" />
  13. <meta charset="UTF-8" />
  14. <link rel="icon" href="../static/favicon.png" type="image/x-icon"/>
  15. <link rel="shortcut icon" href="../static/favicon.png" type="image/x-icon"/>
  16. <link rel="stylesheet" href="../static/style.css" type="text/css" />
  17. <title>Exmods Guides</title>
  18. </head>
  19. <body>
  20. <h1>Modding Guides</h1>
  21. <h3>Welcome to a collection of guides about modifying Techblox.</h3>
  22. <ul>
  23. <a href="quickstart.html">
  24. <li>
  25. <span class="title">Quick Start</span>
  26. <p>This guide walks you through installing a mod manager for Gamecraft. Subjects covered include:<br/>
  27. - Downloading and running GCMM<br/>
  28. - Installing mods</p>
  29. </li>
  30. </a>
  31. <a href="first.html">
  32. <li>
  33. <span class="title">Getting Started with Development</span>
  34. <p>This guide lays the groundwork for modding Techblox. Subjects covered include:<br/>
  35. - Setting up your development environment<br/>
  36. - Making your first mod in Visual Studio<br/>
  37. - Overview of Gamecraft's (aka Techblox) design<br/>
  38. - Best practices</p>
  39. </li>
  40. </a>
  41. <a href="install.html">
  42. <li>
  43. <span class="title">Installing Mods</span>
  44. <p>This guide walks you through installing mods for Techblox. If the mod you are trying to install has it's own instructions, follow those instead. Subjects covered include:<br/>
  45. - Patching Techblox<br/>
  46. - Adding mods</p>
  47. </li>
  48. </a>
  49. </ul>
  50. <footer>
  51. exmods.org|<a href="https://git.exmods.org/ExMods/html-site">Site Repository</a>|<a href="https://exmods.org">Home</a>|<a href="https://discord.gg/2CtWzZT">Discord</a>|<a href="https://twitter.com/GamecraftMods">Twitter</a>
  52. </footer>
  53. </body>
  54. </html>