Hi all,
I'm trying to implement my sky observation logs with Hakyll. It was implemented w/ Python + Django before.
What I want to do is.
1. I write observation log based on sky groups and date. Which means I will make 20130514-m57.rst and 20130514-m31m32.rst if I observed m57, m31, m32 in May 14, 2013.
2. Each page has custom meta fiels (place, body, telescope, eyepiece, seeing, clarity)
Based on above pages, I want to generate pages and lists.
- Observation logs for each file.
- Post lists based on 'place' metafield
- Post lists based on celestial bodies.
- Post lists based on telescopes,
- Post lists based on eyepiece
So, as I know, make lists is only available with 'tag' metafield with buildTags function, isn't it? Which means the only solution to do above things is to make new function that acts like buildTags.
I am almost mute and deaf in Haskell language. So I think that implementing this might takes a few months including getting familiar with Haskell and Hakyll.
Could you guide me which part I have to look in detail in Haskell language and the direction to implement?
Eunchan Kim