mkproj 0.1.0

The rocket backend of mkproj.com
<!DOCTYPE html>
<html>
<title>Projects</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body, h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif}
.w3-row-padding img {margin-bottom: 12px}
/* Set the width of the sidebar to 120px */
.w3-sidebar {width: 120px;background: #222;}
/* Add a left margin to the "page content" that matches the width of the sidebar (120px) */
#main {margin-left: 120px}
/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {#main {margin-left: 0}}
</style>
<body class="w3-black">

<!-- Icon Bar (Sidebar - hidden on small screens) -->
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center">
  <!-- Avatar image in top left corner -->
 <!-- <img src="Banner.png" style="width:100%"> -->
  <a href="/" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
    <i class="fa fa-home w3-xxlarge"></i>
    <p>HOME</p>
  </a>
  <a href="/proj" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
    <i class="fa fa-user w3-xxlarge"></i>
    <p>PROJECTS</p>
  </a>
  <a href="http://blog.mkproj.com" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
    <i class="fa fa-coffee w3-xxlarge"></i>
    <p>MOKA READS</p>
  </a>
  <a href="/book" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
    <i class="fa fa-book w3-xxlarge"></i>
    <p>BOOKS</p>
  </a>
</nav>

<!-- Navbar on small screens (Hidden on medium and large screens) -->
<div class="w3-top w3-hide-large w3-hide-medium" id="myNavbar">
  <div class="w3-bar w3-black w3-opacity w3-hover-opacity-off w3-center w3-small">
    <a href="/" class="w3-bar-item w3-button" style="width:25% !important">HOME</a>
    <a href="/proj" class="w3-bar-item w3-button" style="width:25% !important">PROJECTS</a>
    <a href="http://blog.mkproj.com" class="w3-bar-item w3-button" style="width:25% !important">MOKA READS</a>
    <a href="/book" class="w3-bar-item w3-button" style="width:25% !important">BOOKS</a>
  </div>
</div>

<!-- Page Content -->
<div class="w3-padding-large" id="main">
    <!-- Header/Home -->
    <header class="w3-container w3-padding-32 w3-center w3-black" id="home">
        <h1 class="w3-jumbo"><span class="w3-hide-small">Projects</span></h1>
        <!--<img src="Banner.png" alt="boy" class="w3-image" width="*" height="0.25*">-->
    </header>

    <!-- About Section -->
    <div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about">
        <h2 class="w3-text-light-grey">PROJECTS</h2>
        <hr style="width:200px" class="w3-opacity">
            <h3><a href="https://github.com/MKProj/texcreate/">TexCreate</a></h3>
<p>TexCreate is a tool that is made to easily build LaTeX projects using prebuilt templates. This tool has two ways to create projects, either by passing in command line arguments, or by using a config.toml file and using <code>texcreate import</code> command. This is an easy to use tool, and works on all platforms to help you with your LaTeX projects.</p>

<h3><a href="https://github.com/MKProj/MKBooks">Books</a></h3>
<p>MKProject Books is an opensource free resource to learn programming, currently focussing on the basics of various languages I hope to cover more advance topics as I also advance my knowledge. Programming is an amazing thing and I would love to help others start by learning core concepts of languages and get a nice start.</p>

<h3><a href="http://blog.mkproj.com">Moka Reads</a></h3>
<p>Moka Reads is a blog site that is aimed to be a nice site to discuss on programming. Currently all updates about various MKProject projects are posted here. I hope to add more projects and languages to this site as well.</p>

<h3><a href="https://github.com/MKProj/MKPM">MKPM</a></h3>
<p>The MKProjects Package Manager is a tool to install any MKProject applications/books, and is to unify all the different programs that exist in MKProject's repositories.</p>

    </div>

    <!-- Footer -->
    <footer class="w3-content w3-padding-64 w3-text-grey w3-xlarge">
        <p class="w3-medium">Built by  <a href="https://github.com/MKProj/" target="_blank" class="w3-hover-text-green">MKProjects</a></p>
        <!-- End footer -->
    </footer>
    <!-- END PAGE CONTENT -->
</div>
</body>
</html>