Skip to content

Commit 18d8ef8

Browse files
committed
Moved to Jekyll and redesigned
1 parent e6aa335 commit 18d8ef8

File tree

177 files changed

+22709
-11542
lines changed

Some content is hidden

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

177 files changed

+22709
-11542
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ npm-debug.log
1717
testem.log
1818
releases
1919
.idea
20-
*~
20+
*~
21+
_site/
22+
dev/

LICENSE

-202
This file was deleted.

README.md

-26
This file was deleted.

_config.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Site settings
2+
title: Telostat Pte Ltd
3+
4+
description: > # this means to ignore newlines until "baseurl:"
5+
Telostat is a technology and R&D services
6+
company providing computational and
7+
method-dependent solutions for data and
8+
process-intensive businesses.
9+
baseurl: "" # the subpath of your site, e.g. /blog/
10+
url: "http://www.telostat.com" # the base hostname & protocol for your site
11+
twitter_username: telostat
12+
github_username: telostat
13+
14+
# Build settings
15+
markdown: kramdown

_includes/footer.html

Whitespace-only changes.

_includes/head.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
6+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
7+
<meta name="author" content="">
8+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
9+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
10+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
11+
<link href='http://fonts.googleapis.com/css?family=Raleway:200,700' rel='stylesheet' type='text/css'>
12+
<link href="{{ "/ext/lightbox2/css/lightbox.css" | prepend: site.baseurl }}" rel="stylesheet">
13+
</head>

_includes/header.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{% if page.title %}
2+
<header class="page-header">
3+
<h1>
4+
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{page.title}}</a>
5+
</h1>
6+
</header>
7+
{% endif %}

_layouts/default.html

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<!-- HEADER -->
4+
{% include head.html %}
5+
<!-- BODY -->
6+
<body>
7+
<!-- NAVIGATION BAR -->
8+
<!-- <nav class="navbar navbar-default navbar-fixed-top"> -->
9+
<!-- <div class="container"> -->
10+
<!-- <div class="navbar-header"> -->
11+
<!-- <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> -->
12+
<!-- <span class="sr-only">Toggle navigation</span> -->
13+
<!-- <span class="icon-bar"></span> -->
14+
<!-- <span class="icon-bar"></span> -->
15+
<!-- <span class="icon-bar"></span> -->
16+
<!-- </button> -->
17+
<!-- <a href="/" class="logo"><img src="{{ "/assets/logo.png" | prepend: site.baseurl }}" height="38" alt="{{ page.title }}" /></a> -->
18+
<!-- </div> -->
19+
<!-- <div id="navbar" class="collapse navbar-collapse navbar-right"> -->
20+
<!-- <ul class="nav navbar-nav"> -->
21+
<!-- {% for page in site.pages %} -->
22+
<!-- <li><a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li> -->
23+
<!-- {% endfor %} -->
24+
<!-- </ul> -->
25+
<!-- </div><\!--/.nav-collapse -\-> -->
26+
<!-- </div> -->
27+
<!-- </nav> -->
28+
<!-- CONTENT -->
29+
<section class="wrapper">
30+
{{ content }}
31+
</section>
32+
<!-- FOOTER -->
33+
<footer class="page-footer">
34+
<div class="container">
35+
<p class="text-center">1 Fullerton Road #02-01 One Fullerton Singapore 049213 (+65) 6832 5186 [email protected]</p>
36+
<div class="text-center">Copyright &copy; Telostat Pte Ltd 2014-2015.</div>
37+
</div>
38+
</footer>
39+
40+
<script src="{{ "/ext/jquery-2.1.4.min.js" | prepend: site.baseurl }}"></script>
41+
<script src="{{ "/ext/lightbox2/js/lightbox.js" | prepend: site.baseurl }}"></script>
42+
<script>
43+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
44+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
45+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
46+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
47+
ga('create', 'UA-52786792-1', 'auto');
48+
ga('send', 'pageview');
49+
</script>
50+
</body>
51+
</html>

_layouts/page.html

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

_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>

_sass/_base.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background-color: black;
3+
}

0 commit comments

Comments
 (0)