The code for my personal website, powered by Jekyll.
arthr.me
jekyll-site
personal-website
1# Site settings
2title: Arthur Freitas
3tagline: Faço sites e vejo filmes.
4description:
5 Eu faço sites adoráveis e artesanais para pessoas bacanas ao redor do
6 mundo.
7
8url: https://arthr.me
9baseurl: ""
10
11lang: pt-BR
12timezone: America/Sao_Paulo
13encoding: utf-8
14
15logo: "/uploads/avatar.png"
16
17author:
18 name: Arthur Freitas
19 uri: https://arthr.me
20 email: "arthur@arthr.me"
21 mastodon: "@arthr@organica.social"
22
23# Theme Settings
24theme: linus
25
26date_formats:
27 day: "%d/%m/%y"
28 month: "%m/%y"
29 year: "%Y"
30
31category_colors:
32 - name: Esquinas
33 color: "#FF7A2F"
34 - name: Notas
35 color: "#2ECC71"
36 - name: Links
37 color: "#3B9EFF"
38 - name: Fotos
39 color: "#FFD000"
40
41main_menu:
42 title: Navegar
43 items:
44 - url: "/"
45 label: O Riacho
46 - url: "/sobre/"
47 label: A Casa
48 - url: "/arquivo/"
49 label: A Biblioteca
50 - url: "/wander/"
51 label: A Trilha
52
53footer_menu:
54 title: Onde me encontrar
55 items:
56 - url: "/feed.xml"
57 rel: alternate
58 label: RSS
59 - url: "/feed.json"
60 rel: alternate
61 label: JSON Feed
62 - url: "https://bsky.app/profile/arthr.me"
63 rel: me
64 label: Bluesky
65 external: true
66 - url: "https://www.flickr.com/photos/arthrfrts"
67 rel: me
68 label: Flickr
69 external: true
70 - url: "https://www.last.fm/user/arthrfrts"
71 rel: me
72 label: Last.FM
73 external: true
74 - url: "https://letterboxd.com/arthrfrts"
75 rel: me
76 label: Letterboxd
77 external: true
78
79translations:
80 byline: "Por"
81 archive_date_title: "Arquivos de %date"
82 archive_tag_title: "Posts marcados com “%tag”"
83 archive_category_title: "Arquivo de %category"
84 blog_pagination_title: "Paginação do blog"
85 blog_pagination_prev_page: "Página anterior"
86 blog_pagination_next_page: "Próxima página"
87
88# Build settings
89permalink: "/:categories/:year/:month/:day/:title/"
90
91paginate: 6
92paginate_path: "/p:num/"
93
94include:
95 - _redirects
96 -
97defaults:
98 - scope:
99 path: ""
100 type: "posts"
101 values:
102 syndicate_to:
103 - bluesky
104 - mastodon
105 - scope:
106 path: ""
107 type: posts
108 category: Fotos
109 values:
110 syndicate_to:
111 - bluesky
112 - mastodon
113 - flickr
114
115# Plugins settings
116plugins:
117 - jekyll-webmention_io
118 - jekyll-compose
119
120# Plugin: jekyll-webmention_io
121webmentions:
122 username: arthr.me
123 cache_folder: .cache
124 cache_bad_uris_for: 1
125 syndication:
126 bluesky:
127 endpoint: https://brid.gy/publish/bluesky
128 flickr:
129 endpoint: https://brid.gy/publish/flickr
130 mastodon:
131 endpoint: https://brid.gy/publish/mastodon
132 templates:
133 webmentions: _includes/webmentions.html
134 legacy_domains:
135 - https://arthrfrts.tumblr.com
136 - https://irrelefante.tumblr.com
137
138# Plugin: jekyll-seo-tag
139seo:
140 name: Arthur Freitas
141 links:
142 - https://bsky.app/profile/arthr.me
143 - https://github.com/arthrfrts
144 - https://www.last.fm/user/arthrfrts
145 - https://www.flickr.com/people/arthrfrts/
146 - https://letterboxd.com/arthrfrts
147 - https://tangled.org/arthr.me
148 - https://arthrfrts.tumblr.com
149 - https://www.linkedin.com/in/arthrfrts
150 - https://organica.social/@arthr
151
152# Plugin: jekyll-archives
153jekyll-archives:
154 permalinks:
155 tags: /tag/:name
156 category: /:name/
157
158# Plugin: jekyll-compose
159jekyll_compose:
160 default_front_matter:
161 drafts:
162 category:
163 tags:
164 posts:
165 category:
166 tags:
167
168# Prose settings
169prose:
170 rooturl: "_posts"
171 siteurl: "https://arthr.me"
172 media: "uploads"
173 relativeLinks: "https://arthr.me/json/links.jsonp"
174 ignore:
175 - _site
176 - _includes
177 - _layouts
178 - assets
179 - docs
180 - js
181 - tumblr_files
182 - Gemfile
183 - Gemfile.lock
184 - README.md
185 - humans.txt
186 - arquivo.md
187 - sobre.md
188 - 404.html
189 - index.html
190 metadata:
191 _posts:
192 - name: layout
193 field:
194 element: hidden
195 value: post
196 - name: title
197 field:
198 element: text
199 label: Title
200 - name: date
201 field:
202 label: Date
203 element: text
204 value: CURRENT_DATETIME
205 - name: category
206 field:
207 element: select
208 label: Category
209 options: "https://arthr.me/json/categories.jsonp"
210 - name: tags
211 field:
212 element: multiselect
213 label: Tags
214 alterable: true
215 options: "https://arthr.me/json/tags.jsonp"
216 - name: "syndicate_to"
217 field:
218 element: multiselect
219 label: Syndication
220 options:
221 - name: Bluesky
222 value: bluesky
223 - name: Mastodon
224 value: mastodon
225 - name: Flickr
226 value: flickr
227 _drafts:
228 - name: layout
229 field:
230 element: hidden
231 value: post
232 - name: title
233 field:
234 element: text
235 label: Title
236 - name: category
237 field:
238 element: select
239 label: Category
240 options: "https://arthr.me/json/categories.jsonp"
241 - name: tags
242 field:
243 element: multiselect
244 label: Tags
245 alterable: true
246 options: "https://arthr.me/json/tags.jsonp"
247 - name: "syndicate_to"
248 field:
249 element: multiselect
250 label: Syndication
251 options:
252 - name: Bluesky
253 value: bluesky
254 - name: Mastodon
255 value: mastodon
256 - name: Flickr
257 value: flickr