Переглянути джерело

robot uprising + css fuark you

master
Shaun Kerr 5 роки тому
джерело
коміт
c6ecba5800
4 змінених файлів з 9 додано та 4 видалено
  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 Переглянути файл

@@ -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 Переглянути файл

@@ -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 Переглянути файл

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

+ 2
- 1
site.hs Переглянути файл

@@ -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



Завантаження…
Відмінити
Зберегти