Skip to content

BeyondCodeBootcamp/beyond-blog-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beyond Theme (for Markdown Blogs)

Intentional Markdown blog template - Lightweight, yet Sophisticated.

Build a Blog using Markdown and Bash

How to Use Beyond Theme

  1. Download both stylesheets:

    curl -LO https://raw.githubusercontent.com/BeyondCodeBootcamp/beyond-blog-template/main/assets/github-markdown.css
    
    curl -LO https://raw.githubusercontent.com/BeyondCodeBootcamp/beyond-blog-template/main/assets/beyond-theme.css
  2. Include them in the <head> of your html:

    <link rel="stylesheet" href="/assets/github-markdown.css" />
    <link rel="stylesheet" href="/assets/beyond-theme.css" />

Example:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <!-- Beyond Code Styles -->
    <link rel="stylesheet" href="/assets/github-markdown.css" />
    <link rel="stylesheet" href="/assets/beyond-theme.css" />
  </head>
  <body>
    <!-- more content -->
  </body>
</html>

How to use the Beyond Markdown Article

Inside of your <body> create an <article class="markdown-body"> with the rendered Markdown output.

<article class="markdown-body">
  <!-- Place rendered markdown content here. Example: -->
  <p>Hello</p>
  <ol>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
  </ol>
</article>

How to use the Beyond Header

Create a <nav class="beyond-nav"> with a single <a href="/"> link to the homepage, and a <ul> containing all other links.

<nav class="beyond-nav">
  <a href="/">
    <span style="font-weight: bold">Beyond</span>
    <span style="font-weight: lighter">Code</span>
  </a>
  <ul>
    <li><a href="/">Blog</a></li>
    <li><a href="/contact.html">Contact</a></li>
  </ul>
</nav>

How to use the Beyond Footer

Create a <footer class="beyond-footer"> and all elements inside of it will be spaced evenly.

<footer class="beyond-footer">
  © 2021
  <center>&#x2665;</center>
  AJ ONeal
</footer>

How to Build a Beyond Markdown Blog

curl -sS https://webinstall.dev | bash

webi sd comrak

bash build.sh

Credit

About

Intentional Markdown blog template - Lightweight, yet Sophisticated.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published