This commit is contained in:
be5invis 2015-11-29 23:06:04 +08:00
parent b4b1278112
commit 90780390f4
50 changed files with 22 additions and 20 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View File

@ -11,7 +11,7 @@
<section id="introduction">
<h1>Iosevka</h1>
<div id="downlinks">
<a href="https://github.com/be5invis/Iosevka/releases/latest"><icon class="icon-cloud-download"></icon>Download Iosevka<span>1.0-beta9 “Tshai-Lieng</span></a>
<a href="https://github.com/be5invis/Iosevka/releases/latest"><icon class="icon-cloud-download"></icon>Download Iosevka<span>Version {{version}} “{{codename}}</span></a>
<a href="specimen.html"><icon class="icon-book-open"></icon>View Specimen<span>All characters & styles</span></a>
</div>
</section>

View File

@ -37,14 +37,16 @@ var CodeSnippet = Vue.component('snippet', {
methods: {}
});
var codeArea = new Vue({
var indexPage = new Vue({
el: 'body',
data: {
themes: ['light', 'dark'],
snippets: [],
snippet: 'js',
theme: 'dark',
isSlab: false
isSlab: false,
version: "1.0.0",
codename: "Tabris"
}
});
codeArea.snippets = codeArea.$children.map(function(e){ return e.name }).filter(function(x){ return !!x });
indexPage.snippets = indexPage.$children.map(function(e){ return e.name }).filter(function(x){ return !!x });