Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parser": "babel-eslint",
"rules": {
"semi": 2
}
}
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
node_modules
out
vendor
*.swp
.idea
node_modules
2 changes: 0 additions & 2 deletions .jshintignore

This file was deleted.

18 changes: 0 additions & 18 deletions .jshintrc

This file was deleted.

1 change: 0 additions & 1 deletion .npmignore

This file was deleted.

40 changes: 0 additions & 40 deletions Gruntfile.js

This file was deleted.

16 changes: 0 additions & 16 deletions Makefile

This file was deleted.

50 changes: 0 additions & 50 deletions boilerplate-local.html

This file was deleted.

50 changes: 0 additions & 50 deletions boilerplate-remote.html

This file was deleted.

48 changes: 0 additions & 48 deletions boilerplate-single.html

This file was deleted.

31 changes: 0 additions & 31 deletions bower.json

This file was deleted.

96 changes: 96 additions & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html>
<head>
<title>My Awesome Presentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<textarea id="source">
class: center, middle
color: grey
font-size: 2rem

# My Awesome Presentation

???

Notes for the _first_ slide!

---

# Agenda

1. Introduction
2. Deep-dive
3. ...

[NOTE]: Note that you need remark.js alongside this html file, but no internet `$test` connection.
---
```js
variable = 'var';
```
col1
```js
test = 'test';
```
||
col2
```js
test2 = 'test2';
```
---

# Introduction
--
This is
--
_important_
--
```php
$variable = 'test';
```
---
# Last Slide
---
a
||
b
||
c
</textarea>
<script src="assets/remark.js" type="text/javascript">
</script>
<script type="text/javascript">
var style = `
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);

body {
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
}
`;

window.slideShow = remark.create({
slideNumber: true,
controls: true,
controlsTutorial: true,
progressBar: true,
transition: 'convex',
transitionSpeed: 'slow',
highlightStyle: 'zenburn',
styles: {
defaultStyle: style
},
folio: true
});
</script>
</body>
</html>
Loading