bloggrammer / Edu-Ansa

An educational website for undergraduate and graduate students.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EduAnsa

EduAnsa is a static website developed as a go-to resource for students.

Even though EduAnsa is a static website, it is build with reusable HTML components (partial HTML files) to avoid HTML duplications. These partial HTML files are combined together using the Apache server INCLUDE statement written in the .htaccess file.

<body>
  <div id="container">
    <!--#include virtual="include/header.html" -->
    <main>
      <article>
        <!--#include virtual="include/author-bio.html" -->
        <!--#include virtual="include/right-sidebar.html" -->
      </article>
    </main>
    <!--#include virtual="include/footer.html" -->
  </div>
  <script src="js/main.js"></script>
</body>

Tech Stack

  • HTML
  • CSS (SCSS)
  • Vanilla JavaScript

Sample Pages

include

Sample Home Page

include

Blog Page

About

An educational website for undergraduate and graduate students.

License:MIT License


Languages

Language:HTML 79.6%Language:SCSS 20.4%