├── .eleventy.js ├── .eleventyignore ├── .gitignore ├── .pages.yml ├── LICENSE ├── README.md ├── _includes ├── components │ ├── foot.njk │ └── head.njk └── frontpage.njk ├── _site ├── admin │ ├── config.yml │ └── index.html ├── css │ ├── _mixins.scss │ ├── _reset.scss │ ├── styles.css │ └── styles.scss ├── img │ ├── apple-touch-icon.png │ ├── favicon-admin.svg │ ├── favicon.svg │ ├── fb-twitter-share.png │ ├── google-touch-icon.png │ ├── one-page-love-award-ribbon-left.svg │ └── some-image.jpg ├── index.html ├── js │ └── script.js ├── manifest.json └── posts │ ├── 100 │ └── index.html │ ├── 101 │ └── index.html │ ├── 102 │ └── index.html │ ├── 103 │ └── index.html │ ├── 104 │ └── index.html │ ├── 105 │ └── index.html │ ├── 106 │ └── index.html │ ├── 107 │ └── index.html │ ├── 001 │ └── index.html │ ├── 002 │ └── index.html │ ├── 003 │ └── index.html │ ├── 004 │ └── index.html │ ├── 005 │ └── index.html │ ├── 006 │ └── index.html │ ├── 007 │ └── index.html │ ├── 008 │ └── index.html │ ├── 009 │ └── index.html │ ├── 010 │ └── index.html │ ├── 011 │ └── index.html │ ├── 012 │ └── index.html │ ├── 013 │ └── index.html │ ├── 014 │ └── index.html │ ├── 015 │ └── index.html │ ├── 016 │ └── index.html │ ├── 017 │ └── index.html │ ├── 018 │ └── index.html │ ├── 019 │ └── index.html │ ├── 020 │ └── index.html │ ├── 021 │ └── index.html │ ├── 022 │ └── index.html │ ├── 023 │ └── index.html │ ├── 024 │ └── index.html │ ├── 025 │ └── index.html │ ├── 026 │ └── index.html │ ├── 027 │ └── index.html │ ├── 028 │ └── index.html │ ├── 029 │ └── index.html │ ├── 030 │ └── index.html │ ├── 031 │ └── index.html │ ├── 032 │ └── index.html │ ├── 033 │ └── index.html │ ├── 034 │ └── index.html │ ├── 035 │ └── index.html │ ├── 036 │ └── index.html │ ├── 037 │ └── index.html │ ├── 038 │ └── index.html │ ├── 039 │ └── index.html │ ├── 040 │ └── index.html │ ├── 041 │ └── index.html │ ├── 042 │ └── index.html │ ├── 043 │ └── index.html │ ├── 044 │ └── index.html │ ├── 045 │ └── index.html │ ├── 046 │ └── index.html │ ├── 047 │ └── index.html │ ├── 048 │ └── index.html │ ├── 049 │ └── index.html │ ├── 050 │ └── index.html │ ├── 051 │ └── index.html │ ├── 052 │ └── index.html │ ├── 053 │ └── index.html │ ├── 054 │ └── index.html │ ├── 055 │ └── index.html │ ├── 056 │ └── index.html │ ├── 057 │ └── index.html │ ├── 058 │ └── index.html │ ├── 059 │ └── index.html │ ├── 060 │ └── index.html │ ├── 061 │ └── index.html │ ├── 062 │ └── index.html │ ├── 063 │ └── index.html │ ├── 064 │ └── index.html │ ├── 065 │ └── index.html │ ├── 066 │ └── index.html │ ├── 067 │ └── index.html │ ├── 068 │ └── index.html │ ├── 069 │ └── index.html │ ├── 070 │ └── index.html │ ├── 071 │ └── index.html │ ├── 072 │ └── index.html │ ├── 073 │ └── index.html │ ├── 074 │ └── index.html │ ├── 075 │ └── index.html │ ├── 076 │ └── index.html │ ├── 077 │ └── index.html │ ├── 078 │ └── index.html │ ├── 079 │ └── index.html │ ├── 080 │ └── index.html │ ├── 081 │ └── index.html │ ├── 082 │ └── index.html │ ├── 083 │ └── index.html │ ├── 084 │ └── index.html │ ├── 085 │ └── index.html │ ├── 086 │ └── index.html │ ├── 087 │ └── index.html │ ├── 088 │ └── index.html │ ├── 089 │ └── index.html │ ├── 090 │ └── index.html │ ├── 091 │ └── index.html │ ├── 092 │ └── index.html │ ├── 093 │ └── index.html │ ├── 094 │ └── index.html │ ├── 095 │ └── index.html │ ├── 096 │ └── index.html │ ├── 097 │ └── index.html │ ├── 098 │ └── index.html │ └── 099 │ └── index.html ├── admin ├── config.yml └── index.html ├── css ├── _mixins.scss ├── _reset.scss ├── styles.css └── styles.scss ├── img ├── apple-touch-icon.png ├── favicon-admin.svg ├── favicon.svg ├── fb-twitter-share.png ├── google-touch-icon.png ├── one-page-love-award-ribbon-left.svg └── some-image.jpg ├── index.md ├── js └── script.js ├── manifest.json ├── package.json └── posts ├── 001.md ├── 002.md ├── 003.md ├── 004.md ├── 005.md ├── 006.md ├── 007.md ├── 008.md ├── 009.md ├── 010.md ├── 011.md ├── 012.md ├── 013.md ├── 014.md ├── 015.md ├── 016.md ├── 017.md ├── 018.md ├── 019.md ├── 020.md ├── 021.md ├── 022.md ├── 023.md ├── 024.md ├── 025.md ├── 026.md ├── 027.md ├── 028.md ├── 029.md ├── 030.md ├── 031.md ├── 032.md ├── 033.md ├── 034.md ├── 035.md ├── 036.md ├── 037.md ├── 038.md ├── 039.md ├── 040.md ├── 041.md ├── 042.md ├── 043.md ├── 044.md ├── 045.md ├── 046.md ├── 047.md ├── 048.md ├── 049.md ├── 050.md ├── 051.md ├── 052.md ├── 053.md ├── 054.md ├── 055.md ├── 056.md ├── 057.md ├── 058.md ├── 059.md ├── 060.md ├── 061.md ├── 062.md ├── 063.md ├── 064.md ├── 065.md ├── 066.md ├── 067.md ├── 068.md ├── 069.md ├── 070.md ├── 071.md ├── 072.md ├── 073.md ├── 074.md ├── 075.md ├── 076.md ├── 077.md ├── 078.md ├── 079.md ├── 080.md ├── 081.md ├── 082.md ├── 083.md ├── 084.md ├── 085.md ├── 086.md ├── 087.md ├── 088.md ├── 089.md ├── 090.md ├── 091.md ├── 092.md ├── 093.md ├── 094.md ├── 095.md ├── 096.md ├── 097.md ├── 098.md ├── 099.md ├── 100.md ├── 101.md ├── 102.md ├── 103.md ├── 104.md ├── 105.md ├── 106.md ├── 107.md ├── 108.md ├── 109.md ├── 110.md └── posts.json /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | README.md 2 | _11ty 3 | .now -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/.pages.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Noel 2 | 3 | A collection of my favorite fun facts 4 | -------------------------------------------------------------------------------- /_includes/components/foot.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_includes/components/foot.njk -------------------------------------------------------------------------------- /_includes/components/head.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_includes/components/head.njk -------------------------------------------------------------------------------- /_includes/frontpage.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_includes/frontpage.njk -------------------------------------------------------------------------------- /_site/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/admin/config.yml -------------------------------------------------------------------------------- /_site/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/admin/index.html -------------------------------------------------------------------------------- /_site/css/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/css/_mixins.scss -------------------------------------------------------------------------------- /_site/css/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/css/_reset.scss -------------------------------------------------------------------------------- /_site/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/css/styles.css -------------------------------------------------------------------------------- /_site/css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/css/styles.scss -------------------------------------------------------------------------------- /_site/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/apple-touch-icon.png -------------------------------------------------------------------------------- /_site/img/favicon-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/favicon-admin.svg -------------------------------------------------------------------------------- /_site/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/favicon.svg -------------------------------------------------------------------------------- /_site/img/fb-twitter-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/fb-twitter-share.png -------------------------------------------------------------------------------- /_site/img/google-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/google-touch-icon.png -------------------------------------------------------------------------------- /_site/img/one-page-love-award-ribbon-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/one-page-love-award-ribbon-left.svg -------------------------------------------------------------------------------- /_site/img/some-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/img/some-image.jpg -------------------------------------------------------------------------------- /_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/index.html -------------------------------------------------------------------------------- /_site/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/js/script.js -------------------------------------------------------------------------------- /_site/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/_site/manifest.json -------------------------------------------------------------------------------- /_site/posts/001/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/002/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/003/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/004/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/005/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/006/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/007/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/008/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/009/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/010/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/011/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/012/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/013/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/014/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/015/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/016/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/017/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/018/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/019/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/020/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/021/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/022/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/023/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/024/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/025/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/026/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/027/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/028/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/029/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/030/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/031/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/032/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/033/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/034/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/035/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/036/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/037/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/038/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/039/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/040/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/041/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/042/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/043/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/044/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/045/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/046/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/047/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/048/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/049/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/050/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/051/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/052/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/053/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/054/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/055/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/056/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/057/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/058/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/059/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/060/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/061/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/062/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/063/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/064/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/065/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/066/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/067/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/068/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/069/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/070/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/071/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/072/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/073/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/074/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/075/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/076/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/077/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/078/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/079/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/080/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/081/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/082/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/083/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/084/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/085/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/086/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/087/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/088/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/089/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/090/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/091/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/092/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/093/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/094/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/095/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/096/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/097/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/098/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/099/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/100/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/101/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/102/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/103/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/104/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/105/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/106/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/posts/107/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/admin/config.yml -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/admin/index.html -------------------------------------------------------------------------------- /css/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/css/_mixins.scss -------------------------------------------------------------------------------- /css/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/css/_reset.scss -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/css/styles.css -------------------------------------------------------------------------------- /css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/css/styles.scss -------------------------------------------------------------------------------- /img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/apple-touch-icon.png -------------------------------------------------------------------------------- /img/favicon-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/favicon-admin.svg -------------------------------------------------------------------------------- /img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/favicon.svg -------------------------------------------------------------------------------- /img/fb-twitter-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/fb-twitter-share.png -------------------------------------------------------------------------------- /img/google-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/google-touch-icon.png -------------------------------------------------------------------------------- /img/one-page-love-award-ribbon-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/one-page-love-award-ribbon-left.svg -------------------------------------------------------------------------------- /img/some-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/img/some-image.jpg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/index.md -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/js/script.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/package.json -------------------------------------------------------------------------------- /posts/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/001.md -------------------------------------------------------------------------------- /posts/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/002.md -------------------------------------------------------------------------------- /posts/003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/003.md -------------------------------------------------------------------------------- /posts/004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/004.md -------------------------------------------------------------------------------- /posts/005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/005.md -------------------------------------------------------------------------------- /posts/006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/006.md -------------------------------------------------------------------------------- /posts/007.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: "007" 4 | fact: "Birds don't urinate." 5 | -------------------------------------------------------------------------------- /posts/008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/008.md -------------------------------------------------------------------------------- /posts/009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/009.md -------------------------------------------------------------------------------- /posts/010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/010.md -------------------------------------------------------------------------------- /posts/011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/011.md -------------------------------------------------------------------------------- /posts/012.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: "012" 4 | fact: "A flock of crows is known as a 'murder'." 5 | -------------------------------------------------------------------------------- /posts/013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/013.md -------------------------------------------------------------------------------- /posts/014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/014.md -------------------------------------------------------------------------------- /posts/015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/015.md -------------------------------------------------------------------------------- /posts/016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/016.md -------------------------------------------------------------------------------- /posts/017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/017.md -------------------------------------------------------------------------------- /posts/018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/018.md -------------------------------------------------------------------------------- /posts/019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/019.md -------------------------------------------------------------------------------- /posts/020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/020.md -------------------------------------------------------------------------------- /posts/021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/021.md -------------------------------------------------------------------------------- /posts/022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/022.md -------------------------------------------------------------------------------- /posts/023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/023.md -------------------------------------------------------------------------------- /posts/024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/024.md -------------------------------------------------------------------------------- /posts/025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/025.md -------------------------------------------------------------------------------- /posts/026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/026.md -------------------------------------------------------------------------------- /posts/027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/027.md -------------------------------------------------------------------------------- /posts/028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/028.md -------------------------------------------------------------------------------- /posts/029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/029.md -------------------------------------------------------------------------------- /posts/030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/030.md -------------------------------------------------------------------------------- /posts/031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/031.md -------------------------------------------------------------------------------- /posts/032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/032.md -------------------------------------------------------------------------------- /posts/033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/033.md -------------------------------------------------------------------------------- /posts/034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/034.md -------------------------------------------------------------------------------- /posts/035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/035.md -------------------------------------------------------------------------------- /posts/036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/036.md -------------------------------------------------------------------------------- /posts/037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/037.md -------------------------------------------------------------------------------- /posts/038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/038.md -------------------------------------------------------------------------------- /posts/039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/039.md -------------------------------------------------------------------------------- /posts/040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/040.md -------------------------------------------------------------------------------- /posts/041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/041.md -------------------------------------------------------------------------------- /posts/042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/042.md -------------------------------------------------------------------------------- /posts/043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/043.md -------------------------------------------------------------------------------- /posts/044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/044.md -------------------------------------------------------------------------------- /posts/045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/045.md -------------------------------------------------------------------------------- /posts/046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/046.md -------------------------------------------------------------------------------- /posts/047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/047.md -------------------------------------------------------------------------------- /posts/048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/048.md -------------------------------------------------------------------------------- /posts/049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/049.md -------------------------------------------------------------------------------- /posts/050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/050.md -------------------------------------------------------------------------------- /posts/051.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/051.md -------------------------------------------------------------------------------- /posts/052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/052.md -------------------------------------------------------------------------------- /posts/053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/053.md -------------------------------------------------------------------------------- /posts/054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/054.md -------------------------------------------------------------------------------- /posts/055.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/055.md -------------------------------------------------------------------------------- /posts/056.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/056.md -------------------------------------------------------------------------------- /posts/057.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/057.md -------------------------------------------------------------------------------- /posts/058.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/058.md -------------------------------------------------------------------------------- /posts/059.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/059.md -------------------------------------------------------------------------------- /posts/060.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/060.md -------------------------------------------------------------------------------- /posts/061.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/061.md -------------------------------------------------------------------------------- /posts/062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/062.md -------------------------------------------------------------------------------- /posts/063.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/063.md -------------------------------------------------------------------------------- /posts/064.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/064.md -------------------------------------------------------------------------------- /posts/065.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/065.md -------------------------------------------------------------------------------- /posts/066.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/066.md -------------------------------------------------------------------------------- /posts/067.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/067.md -------------------------------------------------------------------------------- /posts/068.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/068.md -------------------------------------------------------------------------------- /posts/069.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/069.md -------------------------------------------------------------------------------- /posts/070.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/070.md -------------------------------------------------------------------------------- /posts/071.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/071.md -------------------------------------------------------------------------------- /posts/072.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/072.md -------------------------------------------------------------------------------- /posts/073.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/073.md -------------------------------------------------------------------------------- /posts/074.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/074.md -------------------------------------------------------------------------------- /posts/075.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/075.md -------------------------------------------------------------------------------- /posts/076.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/076.md -------------------------------------------------------------------------------- /posts/077.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/077.md -------------------------------------------------------------------------------- /posts/078.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/078.md -------------------------------------------------------------------------------- /posts/079.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/079.md -------------------------------------------------------------------------------- /posts/080.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/080.md -------------------------------------------------------------------------------- /posts/081.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/081.md -------------------------------------------------------------------------------- /posts/082.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/082.md -------------------------------------------------------------------------------- /posts/083.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/083.md -------------------------------------------------------------------------------- /posts/084.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/084.md -------------------------------------------------------------------------------- /posts/085.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/085.md -------------------------------------------------------------------------------- /posts/086.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/086.md -------------------------------------------------------------------------------- /posts/087.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/087.md -------------------------------------------------------------------------------- /posts/088.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/088.md -------------------------------------------------------------------------------- /posts/089.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/089.md -------------------------------------------------------------------------------- /posts/090.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/090.md -------------------------------------------------------------------------------- /posts/091.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/091.md -------------------------------------------------------------------------------- /posts/092.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/092.md -------------------------------------------------------------------------------- /posts/093.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/093.md -------------------------------------------------------------------------------- /posts/094.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/094.md -------------------------------------------------------------------------------- /posts/095.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/095.md -------------------------------------------------------------------------------- /posts/096.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/096.md -------------------------------------------------------------------------------- /posts/097.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/097.md -------------------------------------------------------------------------------- /posts/098.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/098.md -------------------------------------------------------------------------------- /posts/099.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/099.md -------------------------------------------------------------------------------- /posts/100.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/100.md -------------------------------------------------------------------------------- /posts/101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/101.md -------------------------------------------------------------------------------- /posts/102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/102.md -------------------------------------------------------------------------------- /posts/103.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/103.md -------------------------------------------------------------------------------- /posts/104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/104.md -------------------------------------------------------------------------------- /posts/105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/105.md -------------------------------------------------------------------------------- /posts/106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/106.md -------------------------------------------------------------------------------- /posts/107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/107.md -------------------------------------------------------------------------------- /posts/108.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/108.md -------------------------------------------------------------------------------- /posts/109.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/109.md -------------------------------------------------------------------------------- /posts/110.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/110.md -------------------------------------------------------------------------------- /posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havardob/noel/HEAD/posts/posts.json --------------------------------------------------------------------------------