diff options
| -rw-r--r-- | _bibliography/example.bib (renamed from example.bib) | 0 | ||||
| -rw-r--r-- | _bibliography/references.bib | 0 | ||||
| -rw-r--r-- | _config.yml | 11 | ||||
| -rw-r--r-- | _layouts/page.html | 10 | ||||
| -rw-r--r-- | _layouts/post.html | 17 | ||||
| -rw-r--r-- | example.md (renamed from _posts/2016-10-16-welcome-to-jekyll.markdown) | 7 |
6 files changed, 7 insertions, 38 deletions
diff --git a/example.bib b/_bibliography/example.bib index 416b697..416b697 100644 --- a/example.bib +++ b/_bibliography/example.bib diff --git a/_bibliography/references.bib b/_bibliography/references.bib new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/_bibliography/references.bib diff --git a/_config.yml b/_config.yml index 7d34000..70a6ff4 100644 --- a/_config.yml +++ b/_config.yml @@ -20,15 +20,4 @@ github_username: jekyll # Build settings markdown: kramdown gems: ['jekyll/scholar'] -scholar: - style: apa - locale: en - sort_by: none - order: ascending - - group_by: none - group_order: ascending - - source: . - bibliography: example.bib
\ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index ce233ad..12956f2 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -1,14 +1,12 @@ --- layout: default --- -<article class="post"> - <header class="post-header"> - <h1 class="post-title">{{ page.title }}</h1> - </header> +<article> + + <h1 class="post-title">{{ page.title }}</h1> + <div class="author">By {{ page.by }}</div> - <div class="post-content"> {{ content }} - </div> </article> diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index c1a2e99..0000000 --- a/_layouts/post.html +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default ---- - -<article> - - <h1 class="post-title">{{ page.title }}</h1> - <div class="author">By {{ page.by }}</div> - - <!-- <header class="post-header"> - <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> - <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p> - </header> --> - - {{ content }} - -</article> diff --git a/_posts/2016-10-16-welcome-to-jekyll.markdown b/example.md index cea231b..9e1086b 100644 --- a/_posts/2016-10-16-welcome-to-jekyll.markdown +++ b/example.md @@ -1,8 +1,6 @@ --- -layout: post +layout: page title: "Remote Procedure Call" -date: 2016-10-16 11:46:07 -0400 -categories: jekyll update by: "Joe Schmoe and Mary Jane" --- You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. @@ -71,4 +69,5 @@ You can also have inline math, like this $$x^2+x=4$$ as well as equation blocks: ## References -{% bibliography %} +{% bibliography --file example %} + |
