vimberlin / vimberlin.de

Sources of
https://vimberlin.de
25 stars 9 forks source link

Event meta informations #14

Closed nougad closed 11 years ago

nougad commented 11 years ago

Hey. I wrote a couple of month ago about generating the ical out of the jekyll posts. Now I did it.

I think the code should explain the most. It needs a little bit more css but it should work.

It was the first time I looked at jekyll (And I'm hate it) and I really don't like ruby. So my solution might not be the cleanest. Feedback is welcome.

wikimatze commented 11 years ago

This looks awesome, I will have a look on the commits as soon as the eurucamp in Berlin is over.

wikimatze commented 11 years ago

jekyll build is running fine and the files are generated but I can't call the webserver on localhost:4000 with jekyll serve. I don't even see an error. I tried some of commits and as soon as I removed your locations settings from the config.yml it is working fine. I tried it with ruby 2.0.0p247 and ruby 1.9.3-p429 and still got the same errors. Can you try it on your machine?

nougad commented 11 years ago

ah ok, I haven't use jekyll serve (i like python -m http.server for static files). The problem is the baseurl setting I need for the links in the ical. jekyll use this special name for own stuff: http://jekyllrb.com/docs/upgrading/#baseurl

I rename it to siteurl.

nougad commented 11 years ago

btw: the sitemap plugin uses baseurl too (maybe I got this name form there) - But the config entry doesn't exists. So all urls are relative. Maybe the sitemap plugin should use siteurl as well

wikimatze commented 11 years ago

Thanks for your effort!