Link markdown, robots and contact vars
This commit is contained in:
parent
b32fa9e4ad
commit
1945b41b4b
6 changed files with 14 additions and 7 deletions
5
.markdownlint.json
Normal file
5
.markdownlint.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"MD013":false,
|
||||||
|
"MD033": false,
|
||||||
|
"MD036": false
|
||||||
|
}
|
|
@ -35,6 +35,7 @@ const loadedLogoImage = plsLoadImage(images_logos, imagePath)
|
||||||
<style>
|
<style>
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
--s-image: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
|
@ -53,7 +54,7 @@ const loadedLogoImage = plsLoadImage(images_logos, imagePath)
|
||||||
|
|
||||||
article img {
|
article img {
|
||||||
border-radius: 1.25rem;
|
border-radius: 1.25rem;
|
||||||
width: 80px;
|
width: var(--s-image);
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,8 +75,8 @@ const loadedLogoImage = plsLoadImage(images_logos, imagePath)
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: var(--c-primary-background);
|
background-color: var(--c-primary-background);
|
||||||
border-radius: 1.25rem;
|
border-radius: 1.25rem;
|
||||||
width: 80px;
|
width: var(--s-image);
|
||||||
height: 80px;
|
height: var(--s-image);
|
||||||
opacity: 90%;
|
opacity: 90%;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,7 @@ allPosts.sort(
|
||||||
The `frontmatter` interface is a kind of header for the markdown files which provides astro with metadata like title, author and such.
|
The `frontmatter` interface is a kind of header for the markdown files which provides astro with metadata like title, author and such.
|
||||||
It is structured like this:
|
It is structured like this:
|
||||||
|
|
||||||
```
|
```yaml
|
||||||
---
|
---
|
||||||
layout: ../../layouts/blogPost.astro
|
layout: ../../layouts/blogPost.astro
|
||||||
title: 'How Astro powers this site'
|
title: 'How Astro powers this site'
|
||||||
|
|
|
@ -81,7 +81,7 @@ screen -S website-firq-npx -dm npx serve public/ -p 9000 -c serve.json"
|
||||||
|
|
||||||
With the following directory structure on the remote host, this can easily be explained:
|
With the following directory structure on the remote host, this can easily be explained:
|
||||||
|
|
||||||
```
|
```plain
|
||||||
/
|
/
|
||||||
├─ public/
|
├─ public/
|
||||||
│ ├─ site content
|
│ ├─ site content
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
user-agent:*
|
User-agent: *
|
||||||
Disallow: /assets/data/
|
Disallow: /assets/data/
|
||||||
|
|
||||||
User-agent: GPTBot
|
User-agent: GPTBot
|
||||||
|
User-agent: Bytespider
|
||||||
Disallow: /
|
Disallow: /
|
||||||
|
|
||||||
Sitemap: https://firq.dev/sitemap-index.xml
|
Sitemap: https://firq.dev/sitemap-index.xml
|
Loading…
Reference in a new issue