-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80de22f
commit 7f50790
Showing
2 changed files
with
54 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
theme: jekyll-theme-tactile | ||
title: xBRL-Forge | ||
author: Anton Heitz | ||
|
||
navbar-links: | ||
Documentation: | ||
- Getting started: "docs/getting_started.md" | ||
Author's home: "https://github.com/antonheitz" | ||
|
||
social-network-links: | ||
email: "anton.j.heitz@gmail.com" | ||
github: antonheitz | ||
title: xBRL Forge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | 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 %} | ||
{% include head-custom.html %} | ||
</head> | ||
|
||
<body> | ||
<div id="container"> | ||
<div class="inner"> | ||
|
||
<header> | ||
<h1>{{ page.title | default: site.title | default: site.github.repository_name }}</h1> | ||
<h2>{{ page.description | default: site.description | default: site.github.project_tagline }}</h2> | ||
</header> | ||
<section id="downloads" class="clearfix"> | ||
{% if site.show_downloads %} | ||
<a href="{{ site.github.zip_url }}" id="download-zip" class="button"><span>Download .zip</span></a> | ||
<a href="{{ site.github.tar_url }}" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a> | ||
{% endif %} | ||
{% if site.github.public %} | ||
{% if site.github.is_project_page %} | ||
<a href="{{ site.github.repository_url }}" id="view-on-github" class="button"><span>View on GitHub</span></a> | ||
{% else %} | ||
<a href="{{ site.github.owner_url }}" id="view-on-github" class="button"><span>View on GitHub</span></a> | ||
{% endif %} | ||
{% endif %} | ||
</section> | ||
<hr> | ||
<section id="main_content"> | ||
{{ content }} | ||
</section> | ||
|
||
<footer> | ||
{% if site.github.is_project_page %} | ||
{{ site.title | default: site.github.repository_name }} is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a><br> | ||
{% endif %} | ||
This page was generated by <a href="https://pages.github.com">GitHub Pages</a>. | ||
</footer> | ||
|
||
</div> | ||
</div> | ||
</body> | ||
</html> |