Skip to content

Instantly share code, notes, and snippets.

@inputdrive
Forked from meskarune/html5 template.html
Created February 4, 2022 11:01
Show Gist options
  • Select an option

  • Save inputdrive/3d70c41586881449f5bf81b87ac8a12f to your computer and use it in GitHub Desktop.

Select an option

Save inputdrive/3d70c41586881449f5bf81b87ac8a12f to your computer and use it in GitHub Desktop.

Revisions

  1. @meskarune meskarune renamed this gist Nov 12, 2012. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. @meskarune meskarune revised this gist Nov 12, 2012. 1 changed file with 37 additions and 49 deletions.
    86 changes: 37 additions & 49 deletions html5 template
    Original file line number Diff line number Diff line change
    @@ -1,55 +1,43 @@
    <!DOCTYPE html>
    <html>
    <head>
    <META charset="UTF-8" />
    <title>
    {put your title here}
    </title>
    <link rel="stylesheet" type="text/css" media="all" href="default.css" />
    </head>

    <head>
    <META charset="UTF-8" />
    <title>
    {put your title here}
    </title>
    <link rel="stylesheet" type="text/css" media="all" href="default.css" />
    </head>
    <body>

    <aside>
    <a href="/" target="blank"><img src="logo.png" alt="logo"></a>
    <nav>
    <a href="/blog">Blog</a>
    <a href="/portfolio">Portfolio</a>
    <a href="/resume">Resume</a>
    <a href="mailto:{your email}" target="blank">Email</a>
    <a href="/links" target="blank">Links</a>
    </nav>
    </aside>

    <aside>
    <a href="/" target="blank"><img src="logo.png" alt="logo"></a>
    <nav>
    <a href="/blog">Blog</a>
    <a href="/portfolio">Portfolio</a>
    <a href="/resume">Resume</a>
    <a href="mailto:{your email}" target="blank">Email</a>
    <a href="/links" target="blank">Links</a>
    </nav>
    </aside>
    <div id="content">

    <article>

    <header><h2>{Post Title}</h2></header>

    <p>
    {post text here}
    </p>

    <header><h2>{Another Title}</h2></header>

    <p>
    {most post text}
    </p>
    </article>

    <article>
    <header><h2>{A Second Article}</h2></header>

    <p>
    {second post text here}
    </p>
    </article>

    <article>
    <header><h2>{Post Title}</h2></header>
    <p>
    {post text here}
    </p>
    <header><h2>{Another Title}</h2></header>
    <p>
    {most post text}
    </p>
    </article>
    <article>
    <header><h2>{A Second Article}</h2></header>
    <p>
    {second post text here}
    </p>
    </article>
    </div>

    <footer>
    {footer text here}
    </footer>
    </body>
    <footer>
    {footer text here}
    </footer>
    </body>
    </html>
  3. @meskarune meskarune revised this gist Nov 12, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion html5 template
    Original file line number Diff line number Diff line change
    @@ -17,7 +17,7 @@
    <a href="/portfolio">Portfolio</a>
    <a href="/resume">Resume</a>
    <a href="mailto:{your email}" target="blank">Email</a>
    <a class="icon" href="/links" target="blank">B</a>
    <a href="/links" target="blank">Links</a>
    </nav>
    </aside>

  4. @meskarune meskarune created this gist Nov 12, 2012.
    55 changes: 55 additions & 0 deletions html5 template
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,55 @@
    <!DOCTYPE html>
    <html>
    <head>
    <META charset="UTF-8" />
    <title>
    {put your title here}
    </title>
    <link rel="stylesheet" type="text/css" media="all" href="default.css" />
    </head>

    <body>

    <aside>
    <a href="/" target="blank"><img src="logo.png" alt="logo"></a>
    <nav>
    <a href="/blog">Blog</a>
    <a href="/portfolio">Portfolio</a>
    <a href="/resume">Resume</a>
    <a href="mailto:{your email}" target="blank">Email</a>
    <a class="icon" href="/links" target="blank">B</a>
    </nav>
    </aside>

    <div id="content">

    <article>

    <header><h2>{Post Title}</h2></header>

    <p>
    {post text here}
    </p>

    <header><h2>{Another Title}</h2></header>

    <p>
    {most post text}
    </p>
    </article>

    <article>
    <header><h2>{A Second Article}</h2></header>

    <p>
    {second post text here}
    </p>
    </article>

    </div>

    <footer>
    {footer text here}
    </footer>
    </body>
    </html>