I am trying to build a blog using Jekyll ( http://jekyllbootstrap.com/usage/jekyll-quick-start.html) on github pages.
After publishing the site, a found a theme Hyde, that uses Poole (https://github.com/poole/poole/#readme).
I am finding it a bit tricky to install it over Jekyll. I hope someone can point me through.
Thanks!
rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"
Check out the API if you are having trouble or just drop it in the includes/themes/THEME-NAME
http://jekyllbootstrap.com/api/theme-api.html
http://jekyllbootstrap.com/usage/jekyll-theming.html
Related
A complete dummy here...
So, we have a website hosted on Github, and we used Jekyll. Now, everything was working just fine, however, a couple of days ago after pushing new posts we get nothing on the website...
Usually, we do it as following:
git add .
git commit -m "initial commit"
git push
And everything works fine.
After running git status, this is what we get:
On branch master
Your branch is up to date with 'origin/master'
nothing to commit, working tree clean
We got the same message before, so the only change is basically that the posts are not showing up on the website :(
Please help!
Thank you!
Recently faced a similar issue. New posts were no more shown on my GitHub web site. I create posts locally and push them to GitHub using Visual Studio Code. Fixed my issue by making "encoding: UTF-8" uppercase in "_config.yml" file (was "encoding: utf-8" before). Once this change was pushed, new posts were shown correctly.
Update: recently noticed as well that timestamp of posts may be the reason for them to not show up. Will need to check which timezone is applied to GitHub web site and compare it with my own.
I am new to stackoverflow and hope you can help me with my problem.
I have downloaded some libraries from json(jsoncons, jsoncpp) and tried to get them running, but this does not work with eclipse.
it works if I create a nano file and then build it manually. pictures will show what I mean.
since I am relatively new to eclipse I need your help to find a solution here
thanks
yours Teddy
Eclipse
Nano
the problem was that the indexer doesnt include the right paths, i had to ifstream ifs("/home/teleskop/eclipse-workspace/json_include_test/test.json");
After I read through all the questions I found here, I still don't get my blog Atmochrom.com running
You can find my repository right here: https://github.com/MarcLeyendecker/marcleyendecker.github.io
I did not change anything. Actually I always duplicate my latest post, edit the .markdown file and push it to the repository. Working for over a year now this way, now it just fails to show the updated site.
Any ideas what I could do?
I already...
checked the config
checked the CNAME
checked the index
Really hope you can help me!
Marc, just double check ...
your post markdown is clean
there are no untracked files when you push to git
This post can help What are some common reasons for a Jekyll post to not be generated?
This tip helped future: true
We're using the new v2 BoxSDK, and followed the steps on the github repo to integrate it as a subproject. Everything builds and runs fine, but we can't archive the project. We get the error:
Lexical or Preprocessor Issue: 'BoxSDK/BoxSDK.h' file not found
I've tried several combinations of setting User Header Search Paths, but can't seem to find anything that works. It looks like the header files are being put in:
"IntermediateBuildFilesPath/UninstalledProducts/include"
Has anyone had any luck getting the v2 BoxSDK working in an app when archiving?
Thanks for any help.
Finally worked it out. You have to add the following entry to your Header Search Paths:
"$(PROJECT_TEMP_DIR)/../UninstalledProducts/include"
Make sure you have the quotes in there.
Add "$(BUILT_PRODUCTS_DIR)" to your header search path.
On XCode 7.1 following Header Search Path worked for me for the Release Build
$(PROJECT_TEMP_DIR)/../UninstalledProducts/iphoneos/include
I'm trying to implement search on my Jekyll site using Lunar JS with this plugin. https://github.com/slashdotdash/jekyll-lunr-js-search
I'm following the instructions in the readme but to a beginner they are not so clear.
I've followed everything up to step 5, ie added all the scripts to my template, and created a search box and container for my search results on the page I want to have search functionality.
However, step 6 says: "Create a Mustache template to display the search results." Where do I need to put this code? In a separate file? Or on the same page as I have my search box?
And step 7 requires me to add:
`indexUrl: '/search.json', // URL of the `search.json` index data for your site`
Can somebody explain what this means? I know lunrjs is supposed to create a json file with all my blog data, but I can't find this json file anywhere. Am I doing something wrong?
You need to make sure that you have the json and nokogiri ruby gems installed. Type:
gem install json
gem install nokogiri