Skip to content

Commit 36d78fd

Browse files
committed
moved jekyll to sub dir
1 parent 23eef51 commit 36d78fd

22 files changed

+403
-25
lines changed

.DS_Store

-6 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ Browser support should be about IE6+ with this `addEventListener` [shim](https:/
252252

253253
- `gulp watch` during development
254254

255-
- `npm test` or `npm run test-watch` to run the unit tests
255+
- `npm test` or `npm run test-watch` to run the unit tests

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ github_username: jekyll
1313
# Build settings
1414
markdown: kramdown
1515
exclude: ["node_modules","test","src"]
16+
17+
source: example
File renamed without changes.
File renamed without changes.
File renamed without changes.

_layouts/default.html renamed to example/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
{% include footer.html %}
2222

23-
<script src="{{ site.baseurl }}/dest/jekyll-search.js" type="text/javascript"></script>
23+
<script src="{{ site.baseurl }}/js/jekyll-search.js" type="text/javascript"></script>
2424

2525

2626
<script type="text/javascript">
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

example/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="home">
6+
7+
<h1 class="page-heading">Posts</h1>
8+
9+
<ul class="post-list">
10+
{% for post in site.posts %}
11+
<li>
12+
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
13+
14+
<h2>
15+
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
16+
</h2>
17+
</li>
18+
{% endfor %}
19+
</ul>
20+
21+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
22+
23+
</div>

0 commit comments

Comments
 (0)