Skip to content

Commit

Permalink
Rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jotonedev committed Feb 29, 2024
1 parent 31fff69 commit 28cc87f
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ theme: jekyll-theme-tallneck
- [privacy.md](privacy.md)
- [terms.md](terms.md)
4. Create the `assets/image` folder and put a replacement for the following images:
4. Create the `assets/images` folder and put a replacement for the following images:
- `favicon.ico` and `favicon.svg` that will be used as the favicon.
- `logo.svg` that will be used as the home button.
- `pwa_icon.svg`, `pwa_icon_x512.png`, `pwa_icon_x128.png`, `pwa_icon_x96.png` that will be used as the PWA icon. ([https://maskable.app/editor](https://maskable.app/editor) can be used to create the maskable icon)
Expand All @@ -77,7 +77,7 @@ layout: post # Optional, post is default
title: "First post!"
subtitle: "Written in Go." # Optional
date: 2023-01-16 17:40:28 +0100
image: /assets/image/golang.jpg # Optional
image: /assets/images/golang.jpg # Optional
---
```

Expand Down
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ threads_url: https://example.com/
x_url: https://example.com/
telegram_url: https://example.com/

about_image: "/assets/image/about.webp"
about_image: "/assets/images/about.webp"
defaults:
- scope:
type: "posts"
values:
layout: "post"
image: "/assets/image/default.webp"
image: "/assets/images/default.webp"
seo:
type: BlogPosting

Expand Down
6 changes: 3 additions & 3 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
<link rel="stylesheet" href="{{ "/assets/css/print.css" | relative_url }}" media="print" fetchpriority="low">

<!-- Favicon -->
<link rel="icon" href="{{ /assets/image/favicon.svg | relative_url }}" type="image/svg+xml">
<link rel="icon" href="{{ /assets/image/favicon.ico | relative_url }}" sizes="any">
<link rel="icon" href="{{ /assets/images/favicon.svg | relative_url }}" type="image/svg+xml">
<link rel="icon" href="{{ /assets/images/favicon.ico | relative_url }}" sizes="any">

<!-- PWA -->
<meta name="theme-color" content="#282828"/>
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="manifest" href="/assets/sitemanifest.json">
<link rel="apple-touch-icon" sizes="512x512" href="/assets/image/pwa_icon_x512.png">
<link rel="apple-touch-icon" sizes="512x512" href="/assets/images/pwa_icon_x512.png">

<!-- Analytics -->
{% if site.cloudflare %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="page-header--container">
<div class="header-logo">
<a aria-label="Home" href="{{ '/' | relative_url }}">
<img alt="Website logo" src="{{ '/assets/image/logo.svg' | relative_url }}" loading="eager" width="37px" height="37px">
<img alt="Website logo" src="{{ '/assets/images/logo.svg' | relative_url }}" loading="eager" width="37px" height="37px">
</a>
</div>

Expand Down
6 changes: 3 additions & 3 deletions _posts/2024-02-22-test-02.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,16 @@ Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

## Images

![Minion](https://octodex.github.com/images/manufacturetocat.png)
![Stormtroopocat](https://octodex.github.com/images/NUX_Octodex.gif "The Stormtroopocat")
![Minion](https://octodex.github.com/imagess/manufacturetocat.png)
![Stormtroopocat](https://octodex.github.com/imagess/NUX_Octodex.gif "The Stormtroopocat")

Like links, Images also have a footnote style syntax

![Alt text][id]

With a reference later in the document defining the URL location:

[id]: https://octodex.github.com/images/yogitocat.png "The Dojocat"
[id]: https://octodex.github.com/imagess/yogitocat.png "The Dojocat"


## Plugins
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
12 changes: 6 additions & 6 deletions assets/sitemanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,37 @@
"start_url": "/",
"icons": [
{
"src": "/assets/image/pwa_icon.svg",
"src": "/assets/images/pwa_icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
},
{
"src": "/assets/image/logo.svg",
"src": "/assets/images/logo.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "monochrome"
},
{
"src": "/assets/image/pwa_icon.svg",
"src": "/assets/images/pwa_icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "maskable"
},
{
"src": "/assets/image/pwa_icon_x96.png",
"src": "/assets/images/pwa_icon_x96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/assets/image/pwa_icon_x128.png",
"src": "/assets/images/pwa_icon_x128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/assets/image/pwa_icon_x512.png",
"src": "/assets/images/pwa_icon_x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
Expand Down

0 comments on commit 28cc87f

Please sign in to comment.