Procházet zdrojové kódy

robot uprising + css fuark you

master
Shaun Kerr před 5 roky
rodič
revize
c6ecba5800
4 změnil soubory, kde provedl 9 přidání a 4 odebrání
  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 Zobrazit soubor

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

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

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

+ 2
- 1
site.hs Zobrazit soubor

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



Načítá se…
Zrušit
Uložit