summaryrefslogtreecommitdiff
path: root/posts/openring.md
blob: 39c9d007b77efdf2fb4aaad0865d69f4d3ba0f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[[!meta title="Building openring with Jekyll Build"]]
[[!meta date="2022-12-02"]]

I think it's great when bloggers post their own personal "reading list" of blogs they themselves follow. Whether this is a customized Blogroll page or footnotes in their individual articles, I find it really helpful to find more interesting content on the "indie" web. This isn't a new concept by any means, but I wanted something a little more "dynamic"[^1] for my own blog.

After some digging I came across [openring](https://sr.ht/~sircmpwn/openring/) and it's great. Fully customizable, lightweight and completely open source. What more could you ask for?

So, I thought others might be interested in how I've implemented openring through my own Jekyll build system.

## Installing openring

You can pull the project [directly via SourceHut](https://sr.ht/~sircmpwn/openring/) if you wish, but I would recommend installing through your default package manager. I'm running Arch, so for me it was as simple as running:

```
yay -S openring
```

That's it. I now have full local access to openring!

## Jekyll Includes

You *could* setup a whole new directory specifically for your openring files, but that seems like overkill. Instead, we will simply add two new files to our existing `_includes` directory. We will name these files `openring-in.html` and `openring-out.html`.

### openring-in.html Contents


    <!-- License-Id: CC0-1.0 -->
    <section class="webring">
      <h3>Articles from blogs I follow around the world wide web</h3>
      <section class="articles">
        {{range .Articles}}
        <div class="article">
          <h4 class="title">
            <a href="{{.Link}}"  rel="noopener">{{.Title}}</a>
          </h4>
          <p class="summary">{{.Summary}}</p>
          <small class="source">
            via <a href="{{.SourceLink}}">{{.SourceTitle}}</a>
          </small>
          <small class="date">{{.Date | datef "January 2, 2006"}}</small>
        </div>
        {{end}}
      </section>
      <p class="attribution">
        Generated by
        <a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
      </p>
    </section>
    <style>
    .webring .articles {
      display: flex;
      flex-wrap: wrap;
      margin: -0.5rem;
    }
    .webring .title {
      margin: 0;
    }
    .webring .article {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      margin: 0.5rem;
      padding: 0.5rem;
      background: #eee;
      min-width: 10rem;
    }
    .webring .summary {
      font-size: 0.8rem;
      flex: 1 1 0;
    }
    .webring .attribution {
      text-align: right;
      font-size: 0.8rem;
      color: #555;
    }
    </style>


> Sidenote: You will get minor Liquid Syntax warnings in the console when running your website via `serve` or `build`. I don't really mind those warnings but if you do, feel free to move these files out into their own sub-directory in your project folder.

### openring-out.html Contents

This will generate itself for us every time we rebuild our Jekyll website. It is important to note that any changes you make in this file will be overwritten the next time you rebuild! All custom styling or layout changes should be made in the `openring-in.html` file.

## Our "New" Build Script

To simplify things, we are going to place our main commands in a single build script in the root directory of our Jekyll project. For my personal blog, I've named this file `build-site.sh`. I know - I'm extremely creative.

Place the following inside that file:


    openring \
      -s https://example.com/feed.xml \
      -s https://example.com/feed.xml \
      -s https://example.com/feed.xml \
      < _includes/openring-in.html \
      > _includes/openring-out.html
    bundle exec jekyll build


## Edit `_config.yml`

Next we need to make sure we exclude our new `build-site` script file, since we really don't need that pushed up to the main server:

    # Includes / Excludes
    exclude:
      - build-site.sh

## Almost Done...

Now you just need to decide where you want your `openring` feed outputs to render. For this example, we will place them at the bottom of every blog post inside the `_layouts/post.html` file, like so:


    {% raw %}{% include openring-out.html %}{% endraw %}


## Build It & They Will Come

This next step is only for those using [SourceHut Pages](https://srht.site) to build and host their websites. If you use a different platform (ie Netlify, Vercel, GitHub Pages) the concept should be similar but will most likely require more tweaking on your end. Just a fair warning.

I won't go into great detail about build script for SourceHut Pages, but feel free to take a look at my [very own build file for this website](https://git.sr.ht/~bt/bt.ht/tree/master/item/.build.yml). That *should* work out-of-the-box for most standard Jekyll websites. (Just be sure to edit with your own details!)

**That's it**. You now have links to blogs you enjoy that will update with each build. Of course, the "latest" blog posts shown will become out-of-date if you don't blog (or at least re-build your website) on a regular basis. But for me, I see this as a good motivator to keep pushing out content!

Happy sharing!


[^1]: Well, as dynamic as a static website can be!