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

+6
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

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Site settings
2+
title: LinkSmart
3+
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

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

_includes/footer.html

+17
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

+22
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

+24
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

+20
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

+29
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

+14
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

+15
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>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2017-02-01 09:41:09
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
10+
11+
Jekyll also offers powerful support for code snippets:
12+
13+
{% highlight ruby %}
14+
def print_hi(name)
15+
puts "Hi, #{name}"
16+
end
17+
print_hi('Tom')
18+
#=> prints 'Hi, Tom' to STDOUT.
19+
{% endhighlight %}
20+
21+
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll’s dedicated Help repository][jekyll-help].
22+
23+
[jekyll]: http://jekyllrb.com
24+
[jekyll-gh]: https://github.com/jekyll/jekyll
25+
[jekyll-help]: https://github.com/jekyll/jekyll-help

_sass/_bootstrap.scss

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*!
2+
* Bootstrap v3.3.7 (http://getbootstrap.com)
3+
* Copyright 2011-2016 Twitter, Inc.
4+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5+
*/
6+
7+
// Core variables and mixins
8+
@import "bootstrap/variables";
9+
@import "bootstrap/mixins";
10+
11+
// Reset and dependencies
12+
@import "bootstrap/normalize";
13+
@import "bootstrap/print";
14+
@import "bootstrap/glyphicons";
15+
16+
// Core CSS
17+
@import "bootstrap/scaffolding";
18+
@import "bootstrap/type";
19+
@import "bootstrap/code";
20+
@import "bootstrap/grid";
21+
@import "bootstrap/tables";
22+
@import "bootstrap/forms";
23+
@import "bootstrap/buttons";
24+
25+
// Components
26+
@import "bootstrap/component-animations";
27+
@import "bootstrap/dropdowns";
28+
@import "bootstrap/button-groups";
29+
@import "bootstrap/input-groups";
30+
@import "bootstrap/navs";
31+
@import "bootstrap/navbar";
32+
@import "bootstrap/breadcrumbs";
33+
@import "bootstrap/pagination";
34+
@import "bootstrap/pager";
35+
@import "bootstrap/labels";
36+
@import "bootstrap/badges";
37+
@import "bootstrap/jumbotron";
38+
@import "bootstrap/thumbnails";
39+
@import "bootstrap/alerts";
40+
@import "bootstrap/progress-bars";
41+
@import "bootstrap/media";
42+
@import "bootstrap/list-group";
43+
@import "bootstrap/panels";
44+
@import "bootstrap/responsive-embed";
45+
@import "bootstrap/wells";
46+
@import "bootstrap/close";
47+
48+
// Components w/ JavaScript
49+
@import "bootstrap/modals";
50+
@import "bootstrap/tooltip";
51+
@import "bootstrap/popovers";
52+
@import "bootstrap/carousel";
53+
54+
// Utility classes
55+
@import "bootstrap/utilities";
56+
@import "bootstrap/responsive-utilities";

0 commit comments

Comments
 (0)