Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
website updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Jul 29, 2017
1 parent 05e009d commit f8b16ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
4 changes: 0 additions & 4 deletions README.md
@@ -1,7 +1,3 @@
---
title: "Home Page"
permalink : "/index.html"
---

# Live Sass Compiler

Expand Down
11 changes: 6 additions & 5 deletions _layouts/default.html
Expand Up @@ -2,10 +2,11 @@
<html lang="{{ site.lang | default: " en-US " }}">

<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico?v=2" type="image/x-icon" />
{% seo title=false %}
<title>{{page.title | default: site.github.repository_name }} | {{ site.title}} </title>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico?v=2" type="image/x-icon" /> {% seo title=false %}
<title>{% if page.permalink == "//" %} {{ "Home Page" }} {% else %} {{ page.title | default: site.github.repository_name }} {%
endif %} | {{ site.title}} </title>

<meta name="description" content="{{ page.description | default: site.description | default: site.github.project_tagline }}"
/>
<meta name="google-site-verification" content="y-KvJvSKZ46u89qRLkNaEeZLB6cN0s6SYt0qqWYnI1I" />
Expand Down Expand Up @@ -37,7 +38,7 @@ <h1 class="project-name">{{ site.title | default: site.github.repository_name }}
<footer class="site-footer">
{% if site.github.is_project_page %}
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span> {% endif %}
<span class="site-footer-credits">This page was generated with <span style="color:red;font-family:Arial;font-size:18px">&#10084;</span> of <a href="https://pages.github.com">GitHub</a>.</span>
<span class="site-footer-credits">This page was generated with <span style="color:red;font-family:Arial;font-size:18px">&#10084;</span> of <a href="https://pages.github.com">GitHub</a>.</span>
</footer>
</section>

Expand Down
1 change: 1 addition & 0 deletions src/appModel.ts
Expand Up @@ -237,6 +237,7 @@ export class AppModel {
}

private mkdirRecursiveSync(dir) {

if (!fs.existsSync(path.dirname(dir))) {
this.mkdirRecursiveSync(path.dirname(dir));
}
Expand Down

0 comments on commit f8b16ee

Please sign in to comment.