added draft on intersection observer

This commit is contained in:
flupe 2021-11-11 00:30:10 +01:00
parent c34b8a14c5
commit a97b4cf584
7 changed files with 36 additions and 19 deletions

View File

@ -70,6 +70,9 @@ main ::selection {
font-weight: 400; font-weight: 400;
} }
section.footnotes {
margin-top: 3em;
}
a.footnote-ref sup::before { content: '[' } a.footnote-ref sup::before { content: '[' }
a.footnote-ref sup::after { content: ']' } a.footnote-ref sup::after { content: ']' }
@ -91,7 +94,7 @@ a {
color: inherit; color: inherit;
font-weight: 400; font-weight: 400;
text-decoration: none; text-decoration: none;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); box-shadow: 0 1px 0 #999;
} }
/* a:hover {text-decoration: underline} */ /* a:hover {text-decoration: underline} */
@ -195,7 +198,7 @@ main header {margin: 0 0 2em}
main ul li { padding: 0 0 0 0 } main ul li { padding: 0 0 0 0 }
main ul { padding: 0 0 0 1.5em } main ul { padding: 0 0 0 1.5em }
main ul.projects a { text-decoration: none } main ul.projects a { text-decoration: none; box-shadow: none }
main ul.projects { main ul.projects {
padding: 0; padding: 0;
@ -249,7 +252,7 @@ header.project ul li {
main blockquote { main blockquote {
border-left: 2px solid var(--darker); border-left: 2px solid var(--darker);
margin: 1em 0; margin: 1.5em 0;
padding: 0 1em; padding: 0 1em;
opacity: 0.8; opacity: 0.8;
line-height: 1.5; line-height: 1.5;
@ -268,24 +271,34 @@ dt {text-align: right; font-weight: 500;}
dd {margin:0} dd {margin:0}
dd p {margin:0} dd p {margin:0}
code, pre.Agda {font: 1em "Source Code Pro", monospace} code, pre.Agda {font: 1em monospace}
pre.Agda a {font-weight: inherit; text-decoration: none} pre.Agda a {font-weight: inherit; text-decoration: none}
pre.Agda a[href]:hover { box-shadow: 0 2px 0 var(--yellow) } pre.Agda a[href]:hover { box-shadow: 0 2px 0 var(--yellow) }
code { code {
display: inline-block; display: inline-block;
padding: 0 .3em; padding: 0 .3em;
background: var(--dark);
} }
pre > code {display: block} pre > code {display: block}
pre { pre, div.sourceCode {
margin:1.5em 0; margin:1.5em 0;
padding: .8em 0; padding: .8em 0;
line-height: 1; line-height: 1;
overflow: auto; overflow: auto;
} }
div.sourceCode {
background: var(--dark);
}
div.sourceCode > pre {
margin: 0;
padding: 0;
}
pre.Agda { pre.Agda {
margin: 1.5em 0; margin: 1.5em 0;
padding: .8em 1em; padding: .8em 1em;

View File

@ -4,9 +4,10 @@ title: Examples
## Achille in the wild ## Achille in the wild
**achille** is very new and has not been advertised much. **achille** is very new, obscure and ill-documented.
Therefore there are currently few concrete examples to show how people use it. Therefore there are currently few concrete examples to show how people use it.
I pretty much am the only user.
Using **achille** on your own site? Make a PR to add it to the list! - [acatalepsie.fr](https://acatalepsie.fr) ([source](https://github.com/flupe/site))
- [sbi.re](https://sbi.re)
- https://acatalepsie.fr ([source](https://github.com/flupe/site)) - [lucas.escot.me](https://lucas.escot.me)

View File

@ -7,7 +7,7 @@ otherwise. In other words, you are free to copy, redistribute and edit this
content, provided you: give appropriate credit; indicate where changes were made content, provided you: give appropriate credit; indicate where changes were made
and do not do so for commercial purposes. and do not do so for commercial purposes.
This website is hosted on a 2014 RPi Model B+ somewhere in France. This website is self-hosted on a server somewhere in Lyon, France.
The domain name `acatalepsie.fr <https://acatalepsie.fr>`_ has The domain name `acatalepsie.fr <https://acatalepsie.fr>`_ has
been registered at `gandi.net <https://gandi.net>`_. been registered at `gandi.net <https://gandi.net>`_.

View File

@ -47,7 +47,7 @@ main = customExecParser p opts >>= \case
desc = "acatalepsie & co" desc = "acatalepsie & co"
build :: ShowDrafts -> Task IO String build :: ShowDrafts -> Task IO ()
build showDrafts = do build showDrafts = do
-- static assets -- static assets
match_ "assets/*" copyFile match_ "assets/*" copyFile
@ -63,4 +63,5 @@ build showDrafts = do
lastImages <- Visual.build lastImages <- Visual.build
Projects.build Projects.build
Posts.build showDrafts lastImages Posts.build showDrafts lastImages
Readings.build -- Readings.build
return ()

View File

@ -6,8 +6,9 @@ import Data.Time (UTCTime, defaultTimeLocale)
import Data.Time.Clock (getCurrentTime) import Data.Time.Clock (getCurrentTime)
import Data.Time.Format (rfc822DateFormat, formatTime) import Data.Time.Format (rfc822DateFormat, formatTime)
import Data.List (isPrefixOf) import Data.List (isPrefixOf)
import Data.Foldable (for_)
import GHC.Generics import GHC.Generics
import Lucid import Lucid hiding (for_)
import Text.Atom.Feed as Atom import Text.Atom.Feed as Atom
import Text.Feed.Types (Feed(..)) import Text.Feed.Types (Feed(..))
@ -141,7 +142,7 @@ renderIndex imgs posts content =
toHtmlRaw content toHtmlRaw content
section_ [class_ "visual tiny"] $ section_ [class_ "visual tiny"] $
forM_ imgs \Image{..} -> for_ imgs \Image{..} ->
figure_ $ a_ [href_ $ fromString imgPath] $ img_ figure_ $ a_ [href_ $ fromString imgPath] $ img_
[ src_ (fromString imgThumbPath) [ src_ (fromString imgThumbPath)
, width_ (fromString $ show imgThumbWidth) , width_ (fromString $ show imgThumbWidth)

View File

@ -1,8 +1,9 @@
module Projects (build) where module Projects (build) where
import Lucid import Lucid
import Data.Char (digitToInt) import Data.Char (digitToInt, isDigit)
import qualified Data.Map.Strict as Map import qualified Data.Map.Strict as Map
import Control.Monad (unless)
import Common import Common
import Route import Route
@ -73,7 +74,7 @@ renderProject Project{..} children content =
a_ [href_ $ "https://github.com/" <> v] a_ [href_ $ "https://github.com/" <> v]
$ toHtml v $ toHtml v
else toHtml v else toHtml v
when (length children > 0) $ unless (null children) $
ol_ [class_ "pages"] $ forM_ children \(title, path) -> ol_ [class_ "pages"] $ forM_ children \(title, path) ->
li_ $ a_ [href_ (fromString path)] (toHtml title) li_ $ a_ [href_ (fromString path)] (toHtml title)
toHtmlRaw content toHtmlRaw content
@ -98,7 +99,7 @@ getKey :: String -> (Int, String)
getKey xs = getKey' 0 xs getKey xs = getKey' 0 xs
where where
getKey' :: Int -> String -> (Int, String) getKey' :: Int -> String -> (Int, String)
getKey' k (x : xs) | x >= '0' && x <= '9' = getKey' k (x : xs) | isDigit x =
getKey' (k * 10 + digitToInt x) xs getKey' (k * 10 + digitToInt x) xs
getKey' k ('-' : xs) = (k, xs) getKey' k ('-' : xs) = (k, xs)
getKey' k xs = (k, xs) getKey' k xs = (k, xs)

View File

@ -75,7 +75,7 @@ outerWith SiteConfig{title,route,..} content = doctypehtml_ do
section_ $ nav_ do section_ $ nav_ do
a_ [ href_ "/projects.html" ] "Projects" a_ [ href_ "/projects.html" ] "Projects"
a_ [ href_ "/visual.html" ] "Visual" a_ [ href_ "/visual.html" ] "Visual"
a_ [ href_ "/readings.html" ] "Readings" -- a_ [ href_ "/readings.html" ] "Readings"
a_ [ href_ "/quid.html" ] "Quid" a_ [ href_ "/quid.html" ] "Quid"
breadcrumb route breadcrumb route