-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Displayed contents of index.html #17
Comments
The short answer is you will have to modify the layout files in |
Thanks. I think you mean |
Hey ! My logo image is displayed now. Is it only a question of patience ? |
Logo I see that the image does appear now on the sidebar. I checked the layout and it is linked to Sidebar The sidebar is controlled by this partial. In particular, the image and the forkme button are controlled by this part of the partial {{# page.github }}
<a href="https://github.com/{{user}}/{{repo}}">
<img style="position: absolute; top: 0; left: 100px; border: 0; height: 100px; z-index: 1;"
alt="Fork me on GitHub"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" >
</a>
{{/ page.github }} The idea is that it uses the properties specified on each page. So if your page has properties
then, it will use those properties while rendering. Now, I realize that it is better of making these properties global. So, if you replace Let me know if you have trouble doing this. You will find the html layout for the sidebar in Empty Space Here is the relevant layout. {{{page.content}}}
<div id="disqus_thread"></div> The easiest way to move the disqus comments to the bottom of the page is to write css. #disqus_thread {
margin-top: 40px;
} You can either add this inline or drop it into the layout directly. |
Ah ok so you meant |
I have another question. In order to "embed" a blog article in the R-bloggers site, the R-bloggers webmaster requires the "feed" of the post. I don't know exactly what is it, but more importantly I don't know whether this feed is available with |
I know exactly what you are talking about. I am working on being able to create the XML feed required by R-Bloggers automatically for Poirot blogs. The idea is to use a mustache layout corresponding to the XML feed format. Now that someone is using Poirot, I have more motivation to do this :) I will update you once I have it set up and working. |
Mmmm ok... so, whenever I build my true blog, maybe the first article I'll publish should be about how I became a |
Hello Ramnath. Now I have tried your instructions about the sidebar and the empty space, and everything works very well (http://stla.github.io/Test_Poirot3/). |
Looking good. You might want to change the Disqus Comments shortname. I would recommend doing the following
|
I have just tried this but now disqus doesn't work anymore: We were unable to load Disqus. If you are a moderator please see our troubleshooting guide. |
Do you have a disqus account? Send me a link to your HTML |
Ahah no ! I don't know yet what is disqus exactly. And actually when you suggested me to change the shortname, I didn't understand what is the role of this shortname. |
Disqus allows you to add a commenting mechanism to your web sites. You will need to create an account and then choose a shortname for your blog, which you can then enter in |
Ok. I have just created an account and put my shortname in |
You need a shortname for every site you create. You will have to use the disqus website to get it. I see from the site that you have You can google for this to figure out how to get a shortname. |
|
I see that your html files still have |
You're right. It works after blogifying. Thank you. |
Great. There are lot of things to be optimized in the workflow. So, feel free to post any feedback/suggestions you have. |
Thank you. I'm taking a break now. My next step will be to try to change some styles. Globally, I prefer the classic knitr style than the current style on my blog (compare for example http://stla.overblog.com/the-binary-splitting-with-the-r-gmp-package-application-to-gauss-hypergeometric-function and http://stla.github.io/Test_Poirot3/posts/BS_F21_v3.html). |
Hello Ramnath, |
@stla No. I haven't made progress on this. I need a full working session with Poirot to crank these features out. I shall keep you posted. |
Here is my first attempt to use
poirot
: http://stla.github.io/Test_Poirot3/index.htmlPlease Ramnath feel my gratitude, this is really great. I have published a post containing
rgl
interactive graphics directly, without any bare-hand actions other than runningblogify()
and synchronizing on GitHub :-)I wonder about what are we supposed to display on the welcome page (index.html). Are we supposed to keep the topleft side panel about
poirot
? - I don't see how to remove the "fork me on github" link image without modifying index.html, and I have changedlogo: assets/img/poirot.jpg
insite.yml
but my image does not appear. I also wonder whether we are supposed to keep the "disqus" links.And how could we modifiy the style of the welcome page ? For instance I'd like to have more empty space between the links to my articles and the disqus links.
The text was updated successfully, but these errors were encountered: