├── .editorconfig ├── .gitignore ├── .nowignore ├── .vscode └── settings.json ├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _drafts └── 2018-12-17-welcome-to-jekyll.markdown ├── _includes ├── footer.html ├── google-analytics.html └── head.html ├── _layouts ├── default.html ├── index.html └── post.html ├── _posts ├── 2018-10-05-LL01.markdown ├── 2018-10-19-LL02.markdown ├── 2018-11-02-LL03.md ├── 2018-11-18-LL04.md ├── 2018-12-20-2018-perspective.markdown ├── 2018-12-20-LL05.markdown ├── 2019-02-08-LL06.markdown ├── 2019-02-22-LL07.markdown ├── 2019-03-15-LL08.markdown ├── 2019-04-05-LL09.markdown ├── 2019-04-26-LL10.md ├── 2019-08-19-LL11.md └── 2019-09-06-LL12.md ├── index.md ├── now.json └── src ├── assets ├── 2018-perspective.gif ├── LL-logo-24.png ├── LL01-a-littoral-line.jpg ├── LL01-at-rest.jpg ├── LL01-red-leather.jpg ├── LL01-sticktoitiveness-180905.jpg ├── LL02-designy.jpg ├── LL02-romer-quote.jpg ├── LL02-shoreline.jpg ├── LL02-things-inbetween.jpg ├── LL03-attention-automatic.jpg ├── LL03-desire-path.jpg ├── LL03-play2.jpg ├── LL03-satisficing.jpg ├── LL04-discussion.jpg ├── LL04-star.jpg ├── LL06-palms-array.jpg ├── LL06-pouring.jpg ├── LL07-lego.jpg ├── LL08-farmyard.jpg ├── LL09-hero.jpg ├── LL09-sphere.jpg ├── LL10-notion-open.jpg ├── LL10-notion.jpg ├── LL11-thankyou.jpg └── LL12-sacks-marginalia.jpg └── styles └── index.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/.gitignore -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_config.yml -------------------------------------------------------------------------------- /_drafts/2018-12-17-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_drafts/2018-12-17-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_includes/google-analytics.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_layouts/index.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2018-10-05-LL01.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-10-05-LL01.markdown -------------------------------------------------------------------------------- /_posts/2018-10-19-LL02.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-10-19-LL02.markdown -------------------------------------------------------------------------------- /_posts/2018-11-02-LL03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-11-02-LL03.md -------------------------------------------------------------------------------- /_posts/2018-11-18-LL04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-11-18-LL04.md -------------------------------------------------------------------------------- /_posts/2018-12-20-2018-perspective.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-12-20-2018-perspective.markdown -------------------------------------------------------------------------------- /_posts/2018-12-20-LL05.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2018-12-20-LL05.markdown -------------------------------------------------------------------------------- /_posts/2019-02-08-LL06.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-02-08-LL06.markdown -------------------------------------------------------------------------------- /_posts/2019-02-22-LL07.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-02-22-LL07.markdown -------------------------------------------------------------------------------- /_posts/2019-03-15-LL08.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-03-15-LL08.markdown -------------------------------------------------------------------------------- /_posts/2019-04-05-LL09.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-04-05-LL09.markdown -------------------------------------------------------------------------------- /_posts/2019-04-26-LL10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-04-26-LL10.md -------------------------------------------------------------------------------- /_posts/2019-08-19-LL11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-08-19-LL11.md -------------------------------------------------------------------------------- /_posts/2019-09-06-LL12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/_posts/2019-09-06-LL12.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/index.md -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/now.json -------------------------------------------------------------------------------- /src/assets/2018-perspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/2018-perspective.gif -------------------------------------------------------------------------------- /src/assets/LL-logo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL-logo-24.png -------------------------------------------------------------------------------- /src/assets/LL01-a-littoral-line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL01-a-littoral-line.jpg -------------------------------------------------------------------------------- /src/assets/LL01-at-rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL01-at-rest.jpg -------------------------------------------------------------------------------- /src/assets/LL01-red-leather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL01-red-leather.jpg -------------------------------------------------------------------------------- /src/assets/LL01-sticktoitiveness-180905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL01-sticktoitiveness-180905.jpg -------------------------------------------------------------------------------- /src/assets/LL02-designy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL02-designy.jpg -------------------------------------------------------------------------------- /src/assets/LL02-romer-quote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL02-romer-quote.jpg -------------------------------------------------------------------------------- /src/assets/LL02-shoreline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL02-shoreline.jpg -------------------------------------------------------------------------------- /src/assets/LL02-things-inbetween.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL02-things-inbetween.jpg -------------------------------------------------------------------------------- /src/assets/LL03-attention-automatic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL03-attention-automatic.jpg -------------------------------------------------------------------------------- /src/assets/LL03-desire-path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL03-desire-path.jpg -------------------------------------------------------------------------------- /src/assets/LL03-play2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL03-play2.jpg -------------------------------------------------------------------------------- /src/assets/LL03-satisficing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL03-satisficing.jpg -------------------------------------------------------------------------------- /src/assets/LL04-discussion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL04-discussion.jpg -------------------------------------------------------------------------------- /src/assets/LL04-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL04-star.jpg -------------------------------------------------------------------------------- /src/assets/LL06-palms-array.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL06-palms-array.jpg -------------------------------------------------------------------------------- /src/assets/LL06-pouring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL06-pouring.jpg -------------------------------------------------------------------------------- /src/assets/LL07-lego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL07-lego.jpg -------------------------------------------------------------------------------- /src/assets/LL08-farmyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL08-farmyard.jpg -------------------------------------------------------------------------------- /src/assets/LL09-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL09-hero.jpg -------------------------------------------------------------------------------- /src/assets/LL09-sphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL09-sphere.jpg -------------------------------------------------------------------------------- /src/assets/LL10-notion-open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL10-notion-open.jpg -------------------------------------------------------------------------------- /src/assets/LL10-notion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL10-notion.jpg -------------------------------------------------------------------------------- /src/assets/LL11-thankyou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL11-thankyou.jpg -------------------------------------------------------------------------------- /src/assets/LL12-sacks-marginalia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/assets/LL12-sacks-marginalia.jpg -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumflack/the-littoral-line/HEAD/src/styles/index.css --------------------------------------------------------------------------------