published on 20.01.2019

Bir postun altına, sıradaki N adet postun linkini nasıl ekleriz? Pagination, ama previous ile next yerine next N post. N, sizin seçeceğiniz bir sayı. Pagination adlı yazıda, önceki ve sonraki yazıları nasıl elde edeceğimizi anlatmıştım. Bir de uzunca ve build time kötü etkileyecek ama teoride faydalı bir algoritma hazırlamıştım. Etiketlere Göre İlgili Yazılar.

Şimdi ise şunu istiyoruz: Okuduğumuz post’a ait kategoride sıradaki N post. Benim kurduğum yapıda _/posts altında birçok kategori var ve bazı kategorilerde episode adında bir değişken tanımladım. Örneğin bu yazının front-matterında, category: jekyll ve episode: 13 belirtilmiş durumda. Yani sıralamayı episode numarasına göre yapacağım, date’e göre değil. Episode değişkeni tanımlı olmayan kategorilerde ise date’e göre sıralayacağım.

N = 5 için, sıradaki 5 yazıyı listelemek istiyoruz. Burada art arda 5 kere next demekten bizi alıkoyan iki durum var:

  1. Sırada 5 yazı olmayabilir. Bu listedeki son 5 yazıdan biri olabilir. Bu durumda başa döneceğiz. Bunun için elimizdeki indeksin modunu alacağız. index = index (mod list.size)
  2. Listede toplamda 5’ten az eleman olabilir. Bu duruma karşı ise, başlangıçta kontrol edeceğiz ve eğer az ise N’i güncelleyeceğiz. Basit bir if statement işimizi görecektir.
{% assign posts = site.posts | where:'category', page.category | sort: 'episode' %}
{% assign count = posts | size %}

{% if page.episode %}
    {% assign ep = page.episode %}
{% else %}
    {% assign posts = site.categories[page.category] | sort: date %}
    {% for post in posts %}
        {% if post.title == page.title %}
            {% assign ep = forloop.index0 %}
            {% break %}
        {% endif %}
    {% endfor %}
{% endif %}

{% if count > 5 %}
    {% assign numshown = 5 %}
{% else %}
    {% assign numshown = count | minus: 1 %}
{% endif %}

<ul>
{% for i in (1..numshown) %}
{% assign pindex = ep | plus: i | modulo: count %}
<li><a href="{{posts[pindex].url}}">{{posts[pindex].title}}</a></li>
{% endfor %}
</ul>
You are reading the 14th of 19 episodes in Jekyll.
Published on 20.01.2019 by Mert Bakır with commit db8d56a.
jekyll
#jekyll #liquid #pagination #static-site
Next episode:
Categories
published on 21.01.2019

Jekyll’da varsayılan olarak gelen yapıda tüm postları _posts/ klasörü altında tutarız. Post sayısı arttıkça postları gruplama, alt klasörlere bölme ihtiyacı duyabilirz. Jekyll hâlâ postları görecek ve site.posts değişkeni, _posts/ ve altındaki tüm alt dizinlerdeki tüm postları getirecektir. …

published on 21.01.2019

Jekyll’da dosyalara front-matter eklerken çoğunlukla tekrara düşebiliriz. Örneğin, birçok dosyaya aynı layoutu, layout: default, layout: post, kategoriyi category: your_category veya koleksiyonunuza özel belirlediğiniz custom attributeları eklerken benzer dosyaların herbirine, aynı satırları …

published on 27.01.2019

Sitemap, sitemap.xml dosyası, bir websitesinin içeriğinin gösterildiği modeldir. URL’lerden oluşur. Search enginelerin crawl botlarla siteyi dolaşabilmelerine yardımcı olur. Sitemap, crawler’ın tüm sayfaları indexleyeceğini garantilemez; ancak yine de büyük arama motorları sitemap …

published on 10.07.2022

Previously, I’ve published a blog post about deploying static content on heroku with basic authentication. The main purpose was to get basic auth for a freely hosted static website. In that post, we hosted the source code on GitLab and configured a CI/CD pipeline to render the static content …

published on 28.05.2022

Each git commit has a field called Author which consists ‘user.name’ and ‘user.email’. We usually set these variables once, after installing git, with git config --global so that each repo gets the variables from the global definition. We can also set them locally for a …

published on 25.05.2022

In this post, I’ll first walk through hosting static content with basic authentication. Then, we’ll look into deploying to Heroku using GitLab Pipelines, more specifically deploying a certain sub-directory within the project instead of pushing the whole project. Also, I’ll share …

published on 17.04.2022
edited on 15.07.2022

Önceki bölümde, markdown formatını LaTeX formatına dönüştürmek için kullanılan Pandoc yazılımından bahsetmiştik. Şimdi konuyu bir adım daha ileri taşıyıp ve bookdown’a geçiyoruz. Bookdown; Rmarkdown kullanarak teknik dökümanlar, kitaplar yazabilmemizi sağlayan, Yihui Xie tarafından yazılmış …

published on 10.04.2022

I’ve been using WSL-2 on Windows for over a year. It’s very useful because some Python packages are just a headache to install on Windows. Also, docker. It’s just better on Linux. Yet, WSL-2 can also be problematic. I remember trying a dual-boot setup when things just went way too …

published on 03.03.2022

In this post, I’ll share how to install geopandas and some other gis related packages on Windows. If you are on Mac or Linux you can probably just pip install those without any issue. I usually had to do a google search every time I wanted to install these packages on Windows environment. Of …