Terms of Service | Privacy Policy | Cookie Policy

Verified Commit dade9f03 authored by Uwe Plonus's avatar Uwe Plonus
Browse files

Added site

parent 897fd3bc
Loading
Loading
Loading
Loading

site/_config.yml

0 → 100644
+13 −0
Original line number Diff line number Diff line
baseurl: /tutorial-x86
theme: jekyll-theme-tactile
# lang:
title: Emu BIOS
description: A BIOS for the system emulator
# show_downloads:
# zip_url:
# tar_url:

is_project_page: true
maintainer: Uwe Plonus

# google_analytics:
+54 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
  <head>
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
    <link rel="stylesheet" type="text/css" href="{{ '/assets/css/print.css' | relative_url }}" media="print">
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->

{% seo %}
  </head>

  <body>
    <div id="container">
      <div class="inner">

        <header>
          <h1>{{ page.title | default: site.title }}</h1>
          <h2>{{ page.description | default: site.description }}</h2>
        </header>
        <section id="downloads" class="clearfix">
          {% if site.show_downloads %}
          <a href="{{ site.zip_url }}" id="download-zip" class="button"><span>Download .zip</span></a>
          <a href="{{ site.tar_url }}" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
          {% endif %}
        </section>
        <hr>
        <section id="main_content">
          {{ content }}
        </section>

        <footer>
        {% if site.is_project_page %}
          {{ site.title }} is maintained by {{ site.maintainer }}<br>
        {% endif %}
        </footer>

      </div>
    </div>

    {% if site.google_analytics %}
      <script>
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
        ga('create', '{{ site.google_analytics }}', 'auto');
        ga('send', 'pageview');
      </script>
    {% endif %}
  </body>
</html>
+7 −0
Original line number Diff line number Diff line
---
---
@import "{{ site.theme }}";

code {
  font-family: monospace;
}

site/index.md

0 → 100644
+6 −0
Original line number Diff line number Diff line
---
layout: default
---
# Introduction

This project is a BIOS for the [system emulator](https://git.sw4j.net/osdevelopment-info/sys-emu).