diff options
| -rw-r--r-- | content/notes/dcss-on-4k-displays.md (renamed from content/notes/dcss-on-4k-display.md) | 14 | ||||
| -rw-r--r-- | themes/simple/layouts/_default/notes.html | 2 | ||||
| -rw-r--r-- | themes/simple/layouts/tags/list.html | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/content/notes/dcss-on-4k-display.md b/content/notes/dcss-on-4k-displays.md index d7ab8e2..e3c6618 100644 --- a/content/notes/dcss-on-4k-display.md +++ b/content/notes/dcss-on-4k-displays.md | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | --- | 1 | --- |
| 2 | title: "Make DCSS playable on 4k Display" | 2 | title: "Make DCSS playable on 4k displays" |
| 3 | url: dcss-on-4k-display.html | 3 | url: dcss-on-4k-display.html |
| 4 | date: 2023-05-27T19:35:11+02:00 | 4 | date: 2023-05-27T19:35:11+02:00 |
| 5 | type: notes | 5 | type: notes |
| @@ -15,14 +15,14 @@ Make a file `~/.crawlrc` with the following content: | |||
| 15 | ```ini | 15 | ```ini |
| 16 | # Adjust the sizes to your liking. | 16 | # Adjust the sizes to your liking. |
| 17 | 17 | ||
| 18 | tile_font_crt_size = 24 | 18 | tile_font_crt_size = 32 |
| 19 | tile_font_stat_size = 24 | 19 | tile_font_stat_size = 32 |
| 20 | tile_font_msg_size = 24 | 20 | tile_font_msg_size = 32 |
| 21 | tile_font_tip_size = 24 | 21 | tile_font_tip_size = 32 |
| 22 | tile_font_lbl_size = 24 | 22 | tile_font_lbl_size = 32 |
| 23 | tile_sidebar_pixels = 64 | 23 | tile_sidebar_pixels = 64 |
| 24 | ``` | 24 | ``` |
| 25 | 25 | ||
| 26 | To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively. | 26 | To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively. |
| 27 | 27 | ||
| 28 | All the options are documented in the [Dungeon Crawl Stone Soup Options Guide](https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt) file. | 28 | All the possible options are documented in the [Dungeon Crawl Stone Soup Options Guide](https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt) file. |
diff --git a/themes/simple/layouts/_default/notes.html b/themes/simple/layouts/_default/notes.html index 3474be6..27ac958 100644 --- a/themes/simple/layouts/_default/notes.html +++ b/themes/simple/layouts/_default/notes.html | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | {{ range (where .Site.RegularPages "Section" "notes") }} | 41 | {{ range (where .Site.RegularPages "Section" "notes") }} |
| 42 | <div class="mb-10"> | 42 | <div class="mb-10"> |
| 43 | <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> | 43 | <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> |
| 44 | <a href="{{ .Params.url }}"> | 44 | <a href="/{{ .Params.url }}"> |
| 45 | <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> | 45 | <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> |
| 46 | </a> | 46 | </a> |
| 47 | <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> | 47 | <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> |
diff --git a/themes/simple/layouts/tags/list.html b/themes/simple/layouts/tags/list.html index 3aa801b..23706b1 100644 --- a/themes/simple/layouts/tags/list.html +++ b/themes/simple/layouts/tags/list.html | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | {{ range .Pages }} | 31 | {{ range .Pages }} |
| 32 | <div class="mb-10"> | 32 | <div class="mb-10"> |
| 33 | <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> | 33 | <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> |
| 34 | <a href="{{ .Params.url }}"> | 34 | <a href="/{{ .Params.url }}"> |
| 35 | <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> | 35 | <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> |
| 36 | </a> | 36 | </a> |
| 37 | <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> | 37 | <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> |
| @@ -45,7 +45,7 @@ | |||
| 45 | <span class="inline-flex flex-row gap-1"> | 45 | <span class="inline-flex flex-row gap-1"> |
| 46 | <span>(</span> | 46 | <span>(</span> |
| 47 | {{ range .Params.tags }} | 47 | {{ range .Params.tags }} |
| 48 | <span>{{ . }}</span> | 48 | <a href="/tags/{{ . | urlize }}.html">{{ . }}</a> |
| 49 | {{ end }} | 49 | {{ end }} |
| 50 | <span>)</span> | 50 | <span>)</span> |
| 51 | </span> | 51 | </span> |
