Skip to content

Commit

Permalink
ok now it should work
Browse files Browse the repository at this point in the history
  • Loading branch information
Alpay, Hakan committed Jun 29, 2018
1 parent 11a41ae commit e13e294
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 13 deletions.
8 changes: 3 additions & 5 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# Dependencies
markdown: kramdown
highlighter: rouge
plugins: [jekyll-paginate]
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge
highlighter: rouge
plugins: [jekyll-paginate]
# Permalinks
permalink: pretty


# Setup
title: Kairen
tagline: 'A constructed language'
description: "A easy-to-learn constructed language that is intuitively understood by AI in Kimeiga's games. Created by <a href='http://kimei.ga' target='_blank'>Kimeiga</a>."
baseurl: /kairen

author:
name: 'Hakan Kimeiga Alpay'
Expand Down
12 changes: 6 additions & 6 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
</title>

<!-- CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/poole.css ">
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/syntax.css ">
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/hyde.css ">
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/kimeiga.css">
<link rel="stylesheet" href="{{ "/assets/css/poole.css " | relative_url }} ">
<link rel="stylesheet" href="{{ "/assets/css/syntax.css " | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/css/hyde.css " | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/css/kimeiga.css" | relative_url }}">
<!-- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> -->
<link rel="stylesheet" href="https://rsms.me/inter/inter-ui.css">

<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/public/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/assets/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="{{ site.baseurl }}/assets/favicon.ico">

<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
Expand Down
4 changes: 2 additions & 2 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1>{{ site.title }}</h1>

<ul class="sidebar-nav">
<li class="sidebar-nav-item{% if page.title == "Home" %} active{% endif %}">
<a href="/">Home</a>
<a href="{{ site.baseurl }}">Home</a>
</li>

{% comment %}
Expand All @@ -20,7 +20,7 @@ <h1>{{ site.title }}</h1>
{% if node.title != null %}
{% if node.layout == "page" %}
<li class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}">
<a href="{{ node.url }}">{{ node.title }}</a>
<a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
</li>
{% endif %}
{% endif %}
Expand Down
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e13e294

Please sign in to comment.