koken

koken
워드프레스나 ghost같은 블로그 서비스인데 사진관리에 특화되어 있고, ui가 마음에 들어서 쓰고 있다. 기존의 다른 블로그들과 구조가 달라서 약간 편집에 애를 먹고 있지만 그런대로 만들어가는 재미가 있는 듯 싶다.
0Q에서 운영중이다.

Koken blueprint theme for developer

https://github.com/koken/blueprint
koken의 if문법을 어떻게 쓰는지 몰랐는데 blueprint를 보고 찾아냈다.

timeline.lens의 문법이 아래처럼 되있어서 각각의 경우를 어떻게 구분해야 하는지 몰랐었는데, blueprint를 보고 해결방법을 알아냈다.

medison theme의 timeline.lens

<koken:loop>
<article>
    <div class="event">
        <koken:event>
            <koken:include file="layouts/event_album.html" />
            <koken:include file="layouts/event_album_update.html" />
            <koken:include file="layouts/event_content.html" />
            <koken:include file="layouts/event_essay.html" />
        </koken:event>
    </div>
</article>
</koken:loop>

해결한 방법

<koken:loop>
        <koken:event>

            <koken:event_album>
            <article>
                <div class="event">
                <koken:include file="layouts/event_album.html" />
                </div>
            </article>
            </koken:event_album>

            <koken:event_essay>
            <article>
                <div class="event">
                <koken:include file="layouts/event_essay.html" />
                </div>
            </article>
            </koken:event_essay>
        </koken:event>

</koken:loop>
Tags : #koken