-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
80 lines (74 loc) · 3.19 KB
/
index.html
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
---
layout: default
title: Bradford GNU/Linux Users Group
summary: A self-help group for GNU/Linux, Open Source and Free Software users in and around the Bradford District, West Yorkshire
---
<div id="featured" class="clearfix wrapper">
<div class="row">
<div class="column column-60">
<p class="welcome">We normally meet every <b>second Tuesday of the month</b> for talks and demonstrations from 7:00pm onwards at BCB Radio in February, May, August and November and online in other months.</p>
<p>Why not come along to a <a href="/meetings/">meeting</a>?</p>
<p>Until the start of the pandemic in 2020, some of us used to create <a href="http://itstuff.org.uk/" type="text/html" role="link">IT Stuff</a> for BCB Radio (106.6 FM). Shi has <a href="https://bradlug.co.uk/blog/2022/04/20/april-20-2022-shi-looks-back-on-itstuff" type="text/html" role="link">looked back</a> on this for us.</p>
</div>
<div class="column column-40">
<img src="/images/logo.jpg">
</div>
</div>
</div>
<div class="row">
<div class="column column-75">
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
{% include postSummary.html %}
{% endfor %}
</div>
<div class="column column-25 navi">
{% include nav.html %}
<!-- Pagination links -->
<div class="pagination">
<div class="flex flex--center">
<div class="flex-item text--left">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="btn btn--primary">Previous</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Previous</a>
{% endif %}
</div>
<div class="flex-item text--center">
<span class="page_number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
</div>
<div class="flex-item text--right">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn btn--primary">Next</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Next</a>
{% endif %}
</div>
</div>
</div>
<!-- Bottom Pagination links -->
<div class="pagination bottom">
<div class="flex flex--center">
<div class="flex-item text--left">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="btn btn--primary">Previous</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Previous</a>
{% endif %}
</div>
<div class="flex-item text--center">
<span class="page_number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
</div>
<div class="flex-item text--right">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn btn--primary">Next</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Next</a>
{% endif %}
</div>
</div>
</div>
<!-- Link to top -->
<a href="#" class="top">Back to top</a>
</div>
</div>