Browse Source

robot uprising + css fuark you

master
Shaun Kerr 5 years ago
parent
commit
c6ecba5800
4 changed files with 9 additions and 4 deletions
  1. +3
    -3
      css/default.css
  2. +2
    -0
      humans.txt
  3. +2
    -0
      robots.txt
  4. +2
    -1
      site.hs

+ 3
- 3
css/default.css View File

@@ -5,8 +5,8 @@ nav a {
text-transform: uppercase;
}

a:before {
content: "▻";
a:after {
content: " ▻";
}

a {
@@ -26,7 +26,7 @@ a:visited {
color: #7FDBFF;
}

.navbar a:before {
.navbar a:after {
content: "";
}



+ 2
- 0
humans.txt View File

@@ -8,4 +8,6 @@ my email is s@p7.co.nz and it is functioning at least 30% of the time
i made this site with help from the people who made hakyll
aidan from my work says that i am his favourite dealer, referring to the data kind

robots (both metaphorically, emotionally, ethically, spiritually and literally), should also be our friends. as such, this sites robot.txt allows unfettered access, so that robots know they are welcome too.

i hope we can be friends

+ 2
- 0
robots.txt View File

@@ -0,0 +1,2 @@
User-agent: *
Disallow:

+ 2
- 1
site.hs View File

@@ -12,7 +12,8 @@ main = do
setLocaleEncoding utf8
hakyll $ do
faviconsRules "icons/favicon.svg"
match "humans.txt" $ do

match (fromList ["humans.txt", "robots.txt"]) $ do
route idRoute
compile copyFileCompiler



Loading…
Cancel
Save