summary refs log tree commit diff stats
path: root/lib/Crater/Routes/Gallery.rakumod
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2022-06-11 21:06:46 +0530
committerAndinus <andinus@nand.sh>2022-06-11 21:06:46 +0530
commitdcceb30788af8433e8184ab15fe8833f5539145b (patch)
tree2bcd3ed110096ab0cb06c981064b45f52a3c469c /lib/Crater/Routes/Gallery.rakumod
parent02f8885f05f09dcb57a358fcd3440eaf679c8c02 (diff)
downloadcrater-dcceb30788af8433e8184ab15fe8833f5539145b.tar.gz
Gallery: Document code, add title fallback
Diffstat (limited to 'lib/Crater/Routes/Gallery.rakumod')
-rw-r--r--lib/Crater/Routes/Gallery.rakumod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Crater/Routes/Gallery.rakumod b/lib/Crater/Routes/Gallery.rakumod
index ede5010..ebf40b4 100644
--- a/lib/Crater/Routes/Gallery.rakumod
+++ b/lib/Crater/Routes/Gallery.rakumod
@@ -30,7 +30,7 @@ sub gallery-routes(
 
             template 'gallery.crotmp', {
                 gallery => $gallery.list(sub-dir => @path),
-                title => $gallery.title(),
+                title => $gallery.title() // "Gallery",
                 nav => @nav,
                 show-nav => @path.elems ?? True !! False
             };
dinus/octans/blame/README.org?h=without-www&id=a5c540608c469a2797262facb766e175b932f0e2'>^
5200e69 ^
5da0304 ^
e748809 ^

015b208 ^
9a2e713 ^
015b208 ^
9a2e713 ^



015b208 ^
9a2d8d4 ^


015b208 ^
015b208 ^
9a2e713 ^


015b208 ^

9a2e713 ^
015b208 ^
9a2e713 ^


015b208 ^
015b208 ^



9a2e713 ^


015b208 ^
015b208 ^

9a2e713 ^
015b208 ^





9a2e713 ^
015b208 ^
b6ef792
9a2e713 ^
5bb0f22 ^
9a2e713 ^
5bb0f22 ^

b6ef792
5bb0f22 ^

e748809 ^
5bb0f22 ^






b6ef792
9a2e713 ^
7419384 ^

b6ef792
9a2e713 ^
b6ef792
9a2e713 ^

b6ef792
5bb0f22 ^
9a2e713 ^
e68e68e ^
9a2e713 ^
e68e68e ^
9a2e713 ^
c78971d ^
9a2e713 ^
c78971d ^

5bb0f22 ^





e748809 ^
b6ef792
9a2e713 ^
b6ef792
015b208 ^

9a2e713 ^
adba877 ^




























9a2e713 ^

adba877 ^
9a2e713 ^



c90dba1 ^
9a2e713 ^
c90dba1 ^

147ac7b ^
9a2e713 ^
147ac7b ^

5da0304 ^
9a2e713 ^
015b208 ^

5da0304 ^
9a2e713 ^


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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167