Skip to content

Commit 99d0100

Browse files
committed
init
0 parents  commit 99d0100

File tree

107 files changed

+13002
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+13002
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site/
2+
.sass-cache/
3+
.jekyll-metadata
4+
_pdf
5+
.idea/
6+
.DS_Store

_config.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Site settings
2+
title: LinkSmart
3+
email: your-email@domain.com
4+
description: > # this means to ignore newlines until "baseurl:"
5+
Write an awesome description for your new site here. You can edit this
6+
line in _config.yml. It will appear in your document head meta (for
7+
Google search results) and in your feed.xml site description.
8+
baseurl: "" # the subpath of your site, e.g. /blog/
9+
url: "http://yourdomain.com" # the base hostname & protocol for your site
10+
twitter_username: jekyllrb
11+
github_username: jekyll
12+
13+
# Build settings
14+
markdown: redcarpet
15+
highlighter: pygments
16+
17+
exclude:
18+
- .idea/
19+
- .gitignore
20+
21+
defaults:
22+
- scope:
23+
path: ''
24+
type: posts
25+
values:
26+
layout: post
27+
sectionid: blog
28+
- scope:
29+
path: blog
30+
type: pages
31+
values:
32+
sectionid: blog
33+
- scope:
34+
path: docs
35+
type: pages
36+
values:
37+
layout: docs
38+
sectionid: docs

_data/homepage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

_includes/footer.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- <footer class="footer">
2+
3+
4+
</footer> -->
5+
6+
<footer class="footer">
7+
<div class="container">
8+
9+
<p class="text-center">
10+
<a href="http://www.fit.fraunhofer.de">Fraunhofer FIT</a> | <a href="http://www.fit.fraunhofer.de/en/imprint.html">Imprint</a> | <a href="http://www.fit.fraunhofer.de/en/data_protection.html">Data Protection Policy</a>
11+
</p>
12+
<!-- <p class="text-muted">Place sticky footer content here.</p> -->
13+
</div>
14+
</footer>
15+
16+
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
17+
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }} "></script>

_includes/head.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8+
9+
10+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
11+
<link rel="stylesheet" href="{{ "/css/font-awesome.min.css" | prepend: site.baseurl }}">
12+
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500" type="text/css">
13+
14+
15+
<link rel="shortcut icon" href="{{ "/favicon.ico?1" | prepend: site.baseurl }}">
16+
17+
18+
19+
20+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
21+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
22+
</head>

_includes/topnav.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<nav class="navbar navbar-default navbar-fixed-top">
2+
<div class="container navbar-container">
3+
<div class="navbar-header">
4+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
5+
<span class="sr-only">Toggle navigation</span>
6+
<span class="icon-bar"></span>
7+
<span class="icon-bar"></span>
8+
<span class="icon-bar"></span>
9+
</button>
10+
<a class="navbar-brand" href="{{ site.baseurl }}/">
11+
<span><img src="{{site.baseurl}}/img/logonav.png" style="margin-top: -14px;"></span>
12+
{{ site.title }}
13+
</a>
14+
</div>
15+
<div id="navbar" class="collapse navbar-collapse">
16+
<ul class="nav navbar-nav">
17+
<li {% if page.sectionid == 'docs' %} class="active"{% endif %}><a href="{{ "/docs" | prepend: site.baseurl }}">Docs</a></li>
18+
<li {% if page.sectionid == 'blog' %} class="active"{% endif %}><a href="{{ "/blog" | prepend: site.baseurl }}">Blog</a></li>
19+
<li><a href="#contact"><i class="fa fa-github" aria-hidden="true"></i> GitHub</a></li>
20+
</ul>
21+
</div>
22+
<!--/.nav-collapse -->
23+
</div>
24+
</nav>

_layouts/default.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include topnav.html %}
9+
10+
<div class="page-content">
11+
<div class="wrapper">
12+
{{ content }}
13+
</div>
14+
</div>
15+
16+
{% include footer.html %}
17+
18+
</body>
19+
20+
</html>

_layouts/docs.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: default
3+
---
4+
5+
<br>
6+
<br>
7+
<div class="container">
8+
<div class="row">
9+
<div class="col-md-4">
10+
<div class="well">
11+
<h4>DOCS</h4>
12+
<ul class="post-list">
13+
{% for doc in site.docs %}
14+
<li>
15+
<a href="{{ doc.url | prepend: site.baseurl }}">{{ doc.title }}</a>
16+
</li>
17+
{% endfor %}
18+
</ul>
19+
</div>
20+
</div>
21+
22+
<div class="col-lg-8">
23+
<h1>{{ page.title }}</h1>
24+
<div>{{ content }}</div>
25+
</div>
26+
27+
28+
</div>
29+
</div>

_layouts/page.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

_layouts/post.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>

0 commit comments

Comments
 (0)