Skip to content

Commit

Permalink
Merge pull request #3 from bangkokrb/bug/meta-jekyll-config
Browse files Browse the repository at this point in the history
Bug - Page meta are not rendered properly
  • Loading branch information
olivierobert authored Dec 21, 2018
2 parents 294a545 + 9140bb8 commit 83da163
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion Procfile.dev
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
jekyll: jekyll server --incremental --config ./config/jekyll.yml --host 0.0.0.0 --port $PORT --force_polling
jekyll: jekyll server --incremental --config ./_config.yml --host 0.0.0.0 --port $PORT --force_polling
webpack: npm run start
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ npm install
* Use Jekyll to serve the website locally (by default, at `http://localhost:5000`):

```shell
$ bundle exec jekyll serve --config ./config/jekyll.yml [--incremental]
$ bundle exec jekyll serve --config ./_config.yml [--incremental]
$ open http://localhost:5000/
```

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<meta name="twitter:site" content="{{ site.url }}" />
<meta name="twitter:title" content="{{ meta_title }}" />
<meta name="twitter:description" content="{{ meta_description }}" />
<meta name="twitter:image" content="/public/images/social/og-twitter-icon.png" />
<meta name="twitter:image" content="/public/images/social/twitter-icon.png" />

<meta name="apple-mobile-web-app-title" content="Ruby Conference Thailand"/>
<meta name="apple-mobile-web-app-title" content="{{ site.name }}"/>
<meta name="mobile-web-app-capable" content="yes"/>
<meta name="apple-touch-fullscreen" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="#1b79ea"/>
Expand Down
2 changes: 1 addition & 1 deletion bin/build
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

npm run build && bundle exec jekyll build --config ./config/jekyll.yml
npm run build && bundle exec jekyll build --config ./_config.yml

0 comments on commit 83da163

Please sign in to comment.