├── site ├── snippets │ ├── index.html │ ├── systemfont.php │ ├── fontselection.php │ └── customfont.php ├── templates │ ├── error.php │ ├── category.php │ └── default.php └── blueprints │ ├── pages │ ├── default.yml │ ├── error.yml │ └── category.yml │ ├── fields │ └── link.yml │ └── site.yml ├── content ├── home │ └── home.txt ├── error │ └── error.txt ├── site.txt ├── 7_development │ └── category.txt ├── 1_top │ └── category.txt ├── 6_game-news │ └── category.txt ├── 3_news │ └── category.txt ├── 9_entertainment │ └── category.txt ├── 2_international-news │ └── category.txt ├── 5_design-news │ └── category.txt ├── 4_startup-news │ └── category.txt └── 8_sounds │ └── category.txt ├── favicon.ico ├── assets ├── readme │ ├── logo.png │ └── example.png ├── favicons │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── mstile-150x150.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── browserconfig.xml │ ├── site.webmanifest │ ├── favicon.svg │ └── safari-pinned-tab.svg ├── scss │ ├── themes │ │ ├── theme-light-lunch.scss │ │ ├── theme-rs-green.scss │ │ ├── theme-summer-night.scss │ │ ├── theme-ocean-lights.scss │ │ ├── theme-minty.scss │ │ ├── theme-lakeshore.scss │ │ ├── theme-sci-fi.scss │ │ ├── _theme-selectors.scss │ │ ├── theme-red-sun.scss │ │ ├── theme-glow-stick.scss │ │ ├── theme-jade.scss │ │ ├── theme-retro-neon.scss │ │ ├── theme-shaped.scss │ │ ├── theme-dark-sea.scss │ │ ├── theme-dark-space.scss │ │ ├── theme-amber.scss │ │ ├── theme-club.scss │ │ └── theme-air.scss │ └── bentobox.scss ├── css │ ├── themes │ │ ├── theme-rs-green.css │ │ ├── theme-reefscape-green.css │ │ ├── theme-retro-neon.css │ │ ├── theme-light-lunch.css │ │ ├── theme-ocean-lights.css │ │ ├── theme-summer-night.css │ │ ├── theme-minty.css │ │ ├── theme-lakeshore.css │ │ ├── theme-red-sun.css │ │ ├── theme-sci-fi.css │ │ ├── theme-dark-sea.css │ │ ├── theme-dark-space.css │ │ ├── theme-jade.css │ │ ├── theme-glow-stick.css │ │ ├── theme-shaped.css │ │ ├── theme-amber.css │ │ ├── theme-club.css │ │ └── theme-air.css │ └── bentobox.css └── images │ ├── logo-pixel.svg │ ├── logo-icon.svg │ ├── logo-angular.svg │ ├── logo-inverse.svg │ ├── logo-rounded.svg │ ├── logo-script.svg │ └── logo-brush.svg ├── robots.txt ├── .gitignore ├── bentobox-license.md └── readme.md /site/snippets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/templates/error.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /site/templates/category.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/home/home.txt: -------------------------------------------------------------------------------- 1 | Title: Home 2 | 3 | ---- 4 | 5 | Uuid: Yx6cmUptB1jI5MLx -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/favicon.ico -------------------------------------------------------------------------------- /content/error/error.txt: -------------------------------------------------------------------------------- 1 | Title: Error 2 | 3 | ---- 4 | 5 | Uuid: 2bPobwMpxqStFcHX -------------------------------------------------------------------------------- /assets/readme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/readme/logo.png -------------------------------------------------------------------------------- /assets/readme/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/readme/example.png -------------------------------------------------------------------------------- /assets/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicons/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/android-chrome-384x384.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcorporaal/Bentobox/HEAD/assets/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 3 | 4 | User-agent: * 5 | Disallow: / 6 | -------------------------------------------------------------------------------- /site/blueprints/pages/default.yml: -------------------------------------------------------------------------------- 1 | title: Default Page 2 | preset: page 3 | fields: 4 | text: 5 | label: Text 6 | type: textarea 7 | size: large 8 | 9 | -------------------------------------------------------------------------------- /site/blueprints/pages/error.yml: -------------------------------------------------------------------------------- 1 | title: Error 2 | pages: false 3 | files: false 4 | fields: 5 | title: 6 | label: Title 7 | type: text 8 | text: 9 | label: Text 10 | type: textarea 11 | size: large -------------------------------------------------------------------------------- /site/blueprints/pages/category.yml: -------------------------------------------------------------------------------- 1 | title: Category 2 | icon: list-bullet 3 | 4 | fields: 5 | highlighted: 6 | label: Highlight this category? 7 | type: toggle 8 | text: 9 | - don't highlight 10 | - highlight 11 | default: no 12 | links: 13 | extends: fields/link 14 | label: Links -------------------------------------------------------------------------------- /assets/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #333 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /content/site.txt: -------------------------------------------------------------------------------- 1 | Title: Bentobox 2 | 3 | ---- 4 | 5 | Theme: dark-space 6 | 7 | ---- 8 | 9 | Logo: angular 10 | 11 | ---- 12 | 13 | Fontfamily: plex_sans 14 | 15 | ---- 16 | 17 | Fontsize: 0.85 18 | 19 | ---- 20 | 21 | Linespacing: 1.7 22 | 23 | ---- 24 | 25 | Letterspacing: 0.4 26 | 27 | ---- 28 | 29 | Passwordprotected: true -------------------------------------------------------------------------------- /site/blueprints/fields/link.yml: -------------------------------------------------------------------------------- 1 | label: Link 2 | icon: url 3 | type: structure 4 | fields: 5 | linklabel: 6 | label: Label for this link 7 | type: text 8 | linkurl: 9 | label: URL 10 | type: url 11 | visible: 12 | label: Show this link? 13 | type: toggle 14 | text: 15 | - hide link 16 | - show link 17 | default: yes -------------------------------------------------------------------------------- /assets/scss/themes/theme-light-lunch.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox light lunch theme 3 | */ 4 | 5 | $background-color: #EEEDE9; 6 | $logo-color: #FF4A6D; 7 | $link-color: #3B2F93; 8 | $link-hover-color: #FF4A6D; 9 | $heading-color: #8983B1; 10 | $heading-highlight-color: #FF4A6D; 11 | 12 | // 13 | // import the scss to apply this 14 | // 15 | @import "theme-selectors"; 16 | -------------------------------------------------------------------------------- /content/7_development/category.txt: -------------------------------------------------------------------------------- 1 | Title: Development 2 | 3 | ---- 4 | 5 | Highlighted: false 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: Github 13 | linkurl: http://github.com 14 | visible: 'true' 15 | - 16 | linklabel: StackOverflow 17 | linkurl: http://stackoverflow.com 18 | visible: 'true' 19 | 20 | ---- 21 | 22 | Uuid: CB94Al7LAohTth0w -------------------------------------------------------------------------------- /assets/scss/themes/theme-rs-green.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox rs green theme 3 | */ 4 | 5 | $background-color: mix(#FFF,#00C382,10%); 6 | $logo-color: #1B1E23; 7 | $link-color: #1B1E23; 8 | $link-hover-color: #FFF; 9 | $heading-color: #88EFD5; 10 | $heading-highlight-color: #FFF; 11 | 12 | // 13 | // import the scss to apply this 14 | // 15 | @import "theme-selectors"; 16 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-summer-night.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox summer night theme 3 | */ 4 | 5 | $background-color: #333949; 6 | $logo-color: #C8CF07; 7 | $link-color: #C7C5DA; 8 | $link-hover-color: #C8CF07; 9 | $heading-color: #73E9F4; 10 | $heading-highlight-color: #E15A68; 11 | 12 | // 13 | // import the scss to apply this 14 | // 15 | @import "theme-selectors"; 16 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-ocean-lights.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox ocean lights theme 3 | */ 4 | 5 | $background-color: #00162A; 6 | $logo-color: mix(#000,#FFE06F, 10%); 7 | $link-color: mix(#000,#3EECD9, 30%); 8 | $link-hover-color: #FF8300; 9 | $heading-color: #72BF3F; 10 | $heading-highlight-color: mix(#000,#FFE06F, 10%); 11 | 12 | // 13 | // import the scss to apply this 14 | // 15 | @import "theme-selectors"; 16 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-minty.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox minty theme 3 | */ 4 | 5 | $background-color: #393848; 6 | $logo-color: #55F9CB; 7 | $link-color: #9998A0; 8 | $link-hover-color: #55F9CB; 9 | $heading-color: #D2D2D5; 10 | $heading-highlight-color: #55F9CB; 11 | 12 | body { 13 | box-shadow:inset 0px 5px 0px 0px #55F9CB; 14 | } 15 | 16 | // 17 | // import the scss to apply this 18 | // 19 | @import "theme-selectors"; 20 | -------------------------------------------------------------------------------- /assets/css/themes/theme-rs-green.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox rs green theme 3 | */ 4 | body { 5 | background-color: #1ac98f; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #1B1E23; } 10 | 11 | a { 12 | color: #1B1E23; } 13 | 14 | a:hover { 15 | color: #FFF; } 16 | 17 | .top-bar a { 18 | color: #1B1E23; } 19 | 20 | .panel h2 { 21 | color: #88EFD5; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #FFF; } 25 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-lakeshore.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox lakeshore theme 3 | */ 4 | 5 | $background-color: #77CDCF; 6 | $logo-color: #F0F8FE; 7 | $link-color: #3A3E4A; 8 | $link-hover-color: #F0F8FE; 9 | $heading-color: #1D8A8C; 10 | $heading-highlight-color: #F0F8FE; 11 | 12 | body { 13 | box-shadow:inset 0px 10px 0px 0px #F7DB08; 14 | } 15 | 16 | // 17 | // import the scss to apply this 18 | // 19 | @import "theme-selectors"; 20 | -------------------------------------------------------------------------------- /assets/css/themes/theme-reefscape-green.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox rs green theme 3 | */ 4 | body { 5 | background-color: #1ac98f; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #1B1E23; } 10 | 11 | a { 12 | color: #1B1E23; } 13 | 14 | a:hover { 15 | color: #FFF; } 16 | 17 | .top-bar a { 18 | color: #1B1E23; } 19 | 20 | .panel h2 { 21 | color: #88EFD5; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #FFF; } 25 | -------------------------------------------------------------------------------- /assets/css/themes/theme-retro-neon.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox retro neon theme 3 | */ 4 | body { 5 | background-color: #06232d; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #247089; } 10 | 11 | a { 12 | color: #629eb2; } 13 | 14 | a:hover { 15 | color: #cb72bc; } 16 | 17 | .top-bar a { 18 | color: #629eb2; } 19 | 20 | .panel h2 { 21 | color: #247089; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #cb72bc; } 25 | -------------------------------------------------------------------------------- /assets/css/themes/theme-light-lunch.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox light lunch theme 3 | */ 4 | body { 5 | background-color: #EEEDE9; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #FF4A6D; } 10 | 11 | a { 12 | color: #3B2F93; } 13 | 14 | a:hover { 15 | color: #FF4A6D; } 16 | 17 | .top-bar a { 18 | color: #3B2F93; } 19 | 20 | .panel h2 { 21 | color: #8983B1; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #FF4A6D; } 25 | -------------------------------------------------------------------------------- /assets/css/themes/theme-ocean-lights.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox ocean lights theme 3 | */ 4 | body { 5 | background-color: #00162A; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #e6ca64; } 10 | 11 | a { 12 | color: #2ba598; } 13 | 14 | a:hover { 15 | color: #FF8300; } 16 | 17 | .top-bar a { 18 | color: #2ba598; } 19 | 20 | .panel h2 { 21 | color: #72BF3F; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #e6ca64; } 25 | -------------------------------------------------------------------------------- /assets/css/themes/theme-summer-night.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox summer night theme 3 | */ 4 | body { 5 | background-color: #333949; 6 | background-repeat: no-repeat; } 7 | 8 | #bentobox { 9 | fill: #C8CF07; } 10 | 11 | a { 12 | color: #C7C5DA; } 13 | 14 | a:hover { 15 | color: #C8CF07; } 16 | 17 | .top-bar a { 18 | color: #C7C5DA; } 19 | 20 | .panel h2 { 21 | color: #73E9F4; } 22 | 23 | .panel h2.is-highlighted { 24 | color: #E15A68; } 25 | -------------------------------------------------------------------------------- /content/1_top/category.txt: -------------------------------------------------------------------------------- 1 | Title: Top 2 | 3 | ---- 4 | 5 | Links: 6 | 7 | - 8 | linklabel: Kirby 9 | linkurl: http://getkirby.com 10 | visible: 'true' 11 | - 12 | linklabel: Bentobox on Github 13 | linkurl: https://github.com/bcorporaal/Bentobox 14 | visible: 'true' 15 | - 16 | linklabel: reefscape.net 17 | linkurl: http://reefscape.net 18 | visible: 'true' 19 | 20 | ---- 21 | 22 | Highlighted: false 23 | 24 | ---- 25 | 26 | Uuid: OpRC4FVZCWhkGYDJ -------------------------------------------------------------------------------- /assets/scss/themes/theme-sci-fi.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox sci-fi theme 3 | */ 4 | 5 | $background-color: #050E1D; 6 | $logo-color: #07DFFD; 7 | $link-color: #035D75; 8 | $link-hover-color: #23B9DE; 9 | $heading-color: #07DFFD; 10 | $heading-highlight-color: #FEBC09; 11 | 12 | body { 13 | background-image: linear-gradient(0deg, #050E1D 0%, #07152E 100%); 14 | background-attachment: fixed; 15 | } 16 | 17 | // 18 | // import the scss to apply this 19 | // 20 | @import "theme-selectors"; 21 | -------------------------------------------------------------------------------- /assets/css/themes/theme-minty.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox minty theme 3 | */ 4 | body { 5 | box-shadow: inset 0px 5px 0px 0px #55F9CB; } 6 | 7 | body { 8 | background-color: #393848; 9 | background-repeat: no-repeat; } 10 | 11 | #bentobox { 12 | fill: #55F9CB; } 13 | 14 | a { 15 | color: #9998A0; } 16 | 17 | a:hover { 18 | color: #55F9CB; } 19 | 20 | .top-bar a { 21 | color: #9998A0; } 22 | 23 | .panel h2 { 24 | color: #D2D2D5; } 25 | 26 | .panel h2.is-highlighted { 27 | color: #55F9CB; } 28 | -------------------------------------------------------------------------------- /assets/css/themes/theme-lakeshore.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox lakeshore theme 3 | */ 4 | body { 5 | box-shadow: inset 0px 10px 0px 0px #F7DB08; } 6 | 7 | body { 8 | background-color: #77CDCF; 9 | background-repeat: no-repeat; } 10 | 11 | #bentobox { 12 | fill: #F0F8FE; } 13 | 14 | a { 15 | color: #3A3E4A; } 16 | 17 | a:hover { 18 | color: #F0F8FE; } 19 | 20 | .top-bar a { 21 | color: #3A3E4A; } 22 | 23 | .panel h2 { 24 | color: #1D8A8C; } 25 | 26 | .panel h2.is-highlighted { 27 | color: #F0F8FE; } 28 | -------------------------------------------------------------------------------- /site/snippets/systemfont.php: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: system; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: local(".SFNSText-Regular"), local(".HelveticaNeueDeskInterface-Regular"), local(".LucidaGrandeUI"), local("Segoe UI"), local("Ubuntu"), local("Roboto-Regular"), local("DroidSans"), local("Tahoma"); 6 | } 7 | 8 | body, .panel h2 { 9 | font-size: rem; 10 | font-family: system; 11 | letter-spacing: px; 12 | line-height: rem !important; 13 | } -------------------------------------------------------------------------------- /assets/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "android-chrome-384x384.png", 12 | "sizes": "384x384", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#333", 17 | "background_color": "#333", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /content/6_game-news/category.txt: -------------------------------------------------------------------------------- 1 | Title: Game news 2 | 3 | ---- 4 | 5 | Highlighted: false 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: Polygon 13 | linkurl: http://polygon.com 14 | visible: 'true' 15 | - 16 | linklabel: IGN 17 | linkurl: http://ign.com 18 | visible: 'true' 19 | - 20 | linklabel: Gametrailers 21 | linkurl: http://gametrailers.com 22 | visible: 'true' 23 | - 24 | linklabel: Kotaku 25 | linkurl: http://kotaku.com/ 26 | visible: 'true' 27 | 28 | ---- 29 | 30 | Uuid: tEwqM9aa2jD2m3Jy -------------------------------------------------------------------------------- /assets/scss/themes/_theme-selectors.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: $background-color; 3 | background-repeat: no-repeat; 4 | } 5 | 6 | #bentobox { 7 | fill: $logo-color; 8 | } 9 | 10 | a { 11 | color: $link-color; 12 | } 13 | 14 | a:hover { 15 | color: $link-hover-color; 16 | } 17 | 18 | .top-bar { 19 | a { 20 | color: $link-color; 21 | } 22 | } 23 | 24 | .panel { 25 | 26 | h2 { 27 | color: $heading-color; 28 | } 29 | 30 | h2.is-highlighted { 31 | color: $heading-highlight-color; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /content/3_news/category.txt: -------------------------------------------------------------------------------- 1 | Title: Tech news 2 | 3 | ---- 4 | 5 | Links: 6 | 7 | - 8 | linklabel: The Verge 9 | linkurl: http://www.theverge.com/ 10 | visible: 'true' 11 | - 12 | linklabel: The Next Web 13 | linkurl: http://thenextweb.com/ 14 | visible: 'true' 15 | - 16 | linklabel: Wired 17 | linkurl: http://wired.com 18 | visible: 'true' 19 | - 20 | linklabel: Ars Technica 21 | linkurl: http://arstechnica.com/ 22 | visible: 'true' 23 | 24 | ---- 25 | 26 | Highlighted: true 27 | 28 | ---- 29 | 30 | Uuid: DP9WJCji0eDOCM2i -------------------------------------------------------------------------------- /assets/scss/themes/theme-red-sun.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox sunset theme 3 | */ 4 | 5 | $background-color: #EBF0F1; 6 | $logo-color: #E5EDEB; 7 | $link-color: #97A2B8; 8 | $link-hover-color: #FFF; 9 | $heading-color: #B8C2CA; 10 | $heading-highlight-color: #FFF; 11 | 12 | 13 | body { 14 | background-color: #13354E; 15 | 16 | background-image: 17 | radial-gradient( 18 | circle at 0% 0%, 19 | #F03623 0%, 20 | #13354E 35% 21 | ); 22 | 23 | } 24 | 25 | // 26 | // import the scss to apply this 27 | // 28 | @import "theme-selectors"; 29 | -------------------------------------------------------------------------------- /content/9_entertainment/category.txt: -------------------------------------------------------------------------------- 1 | Title: Entertainment 2 | 3 | ---- 4 | 5 | Highlighted: false 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: XKCD 13 | linkurl: http://xkcd.com 14 | visible: 'true' 15 | - 16 | linklabel: The Onion 17 | linkurl: http://www.theonion.com/ 18 | visible: 'true' 19 | - 20 | linklabel: What if? 21 | linkurl: https://what-if.xkcd.com/ 22 | visible: 'true' 23 | - 24 | linklabel: Wait but why? 25 | linkurl: http://waitbutwhy.com/ 26 | visible: 'true' 27 | 28 | ---- 29 | 30 | Uuid: 24AIep4AkL5Cxsy4 -------------------------------------------------------------------------------- /assets/css/themes/theme-red-sun.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox sunset theme 3 | */ 4 | body { 5 | background-color: #13354E; 6 | background-image: radial-gradient(circle at 0% 0%, #F03623 0%, #13354E 35%); } 7 | 8 | body { 9 | background-color: #EBF0F1; 10 | background-repeat: no-repeat; } 11 | 12 | #bentobox { 13 | fill: #E5EDEB; } 14 | 15 | a { 16 | color: #97A2B8; } 17 | 18 | a:hover { 19 | color: #FFF; } 20 | 21 | .top-bar a { 22 | color: #97A2B8; } 23 | 24 | .panel h2 { 25 | color: #B8C2CA; } 26 | 27 | .panel h2.is-highlighted { 28 | color: #FFF; } 29 | -------------------------------------------------------------------------------- /assets/css/themes/theme-sci-fi.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox sci-fi theme 3 | */ 4 | body { 5 | background-image: linear-gradient(0deg, #050E1D 0%, #07152E 100%); 6 | background-attachment: fixed; } 7 | 8 | body { 9 | background-color: #050E1D; 10 | background-repeat: no-repeat; } 11 | 12 | #bentobox { 13 | fill: #07DFFD; } 14 | 15 | a { 16 | color: #035D75; } 17 | 18 | a:hover { 19 | color: #23B9DE; } 20 | 21 | .top-bar a { 22 | color: #035D75; } 23 | 24 | .panel h2 { 25 | color: #07DFFD; } 26 | 27 | .panel h2.is-highlighted { 28 | color: #FEBC09; } 29 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-glow-stick.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox glow stick theme 3 | */ 4 | 5 | $background-color: #464749; 6 | $logo-color: #B8D310; 7 | $link-color: #989A9F; 8 | $link-hover-color: #B8D310; 9 | $heading-color: #B1B1B1; 10 | $heading-highlight-color: #FFFFFF; 11 | 12 | body { 13 | background-image: linear-gradient(to left top, #546373, #475463, #3a4552, #2e3743, #222a34); 14 | background-attachment: fixed; 15 | box-shadow:inset 0px 5px 0px 0px #B8D310; 16 | } 17 | 18 | // 19 | // import the scss to apply this 20 | // 21 | @import "theme-selectors"; 22 | -------------------------------------------------------------------------------- /content/2_international-news/category.txt: -------------------------------------------------------------------------------- 1 | Title: International news 2 | 3 | ---- 4 | 5 | Highlighted: true 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: BBC News 13 | linkurl: http://www.bbc.com/news 14 | visible: 'true' 15 | - 16 | linklabel: New York Times 17 | linkurl: http://www.nytimes.com/ 18 | visible: 'true' 19 | - 20 | linklabel: The Guardian 21 | linkurl: http://www.theguardian.com/ 22 | visible: 'true' 23 | - 24 | linklabel: CNN 25 | linkurl: http://cnn.com 26 | visible: 'true' 27 | 28 | ---- 29 | 30 | Uuid: nBeHK8uKqJmo3RpQ -------------------------------------------------------------------------------- /assets/css/themes/theme-dark-sea.css: -------------------------------------------------------------------------------- 1 | /*! 2 | DuoTone - dark sea 3 | Roughly based on the Atom color scheme with the same name 4 | original by Simurai 5 | http://simurai.com/projects/2016/01/01/duotone-themes 6 | */ 7 | body { 8 | background-color: #1d262f; 9 | background-repeat: no-repeat; } 10 | 11 | #bentobox { 12 | fill: #91c1f8; } 13 | 14 | a { 15 | color: #6e88a6; } 16 | 17 | a:hover { 18 | color: #22d398; } 19 | 20 | .top-bar a { 21 | color: #6e88a6; } 22 | 23 | .panel h2 { 24 | color: #91c1f8; } 25 | 26 | .panel h2.is-highlighted { 27 | color: #22d398; } 28 | -------------------------------------------------------------------------------- /assets/images/logo-pixel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/themes/theme-dark-space.css: -------------------------------------------------------------------------------- 1 | /*! 2 | DuoTone - dark space 3 | Roughly based on the Atom color scheme with the same name 4 | original by Simurai 5 | http://simurai.com/projects/2016/01/01/duotone-themes 6 | */ 7 | body { 8 | background-color: #24242e; 9 | background-repeat: no-repeat; } 10 | 11 | #bentobox { 12 | fill: #dd672c; } 13 | 14 | a { 15 | color: #767693; } 16 | 17 | a:hover { 18 | color: #dd672c; } 19 | 20 | .top-bar a { 21 | color: #767693; } 22 | 23 | .panel h2 { 24 | color: #9d9dc8; } 25 | 26 | .panel h2.is-highlighted { 27 | color: #dd672c; } 28 | -------------------------------------------------------------------------------- /site/snippets/fontselection.php: -------------------------------------------------------------------------------- 1 | fontfamily() == "system") { 3 | snippet('systemfont', [ 4 | 'fontsize' => $site->fontsize(), 5 | 'fontfamily' => $site->fontfamily(), 6 | 'letterspacing' => $site->letterspacing(), 7 | 'linespacing' => $site->linespacing() 8 | ]); 9 | } else { 10 | snippet('customfont', [ 11 | 'fontsize' => $site->fontsize(), 12 | 'fontfamily' => $site->fontfamily(), 13 | 'letterspacing' => $site->letterspacing(), 14 | 'linespacing' => $site->linespacing() 15 | ]); 16 | } 17 | ?> -------------------------------------------------------------------------------- /assets/css/themes/theme-jade.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox jade theme 3 | */ 4 | body { 5 | background-color: #E1EBCB; 6 | background-image: linear-gradient(to right bottom, #e1ebcb, #cce2be, #b4d9b4, #99d0ad, #7cc7a9); } 7 | 8 | .header { 9 | z-index: 1000; } 10 | 11 | body { 12 | background-color: #E1EBCB; 13 | background-repeat: no-repeat; } 14 | 15 | #bentobox { 16 | fill: #001415; } 17 | 18 | a { 19 | color: #224537; } 20 | 21 | a:hover { 22 | color: #FF5D56; } 23 | 24 | .top-bar a { 25 | color: #224537; } 26 | 27 | .panel h2 { 28 | color: #0B7770; } 29 | 30 | .panel h2.is-highlighted { 31 | color: #EE3940; } 32 | -------------------------------------------------------------------------------- /assets/css/themes/theme-glow-stick.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox glow stick theme 3 | */ 4 | body { 5 | background-image: linear-gradient(to left top, #546373, #475463, #3a4552, #2e3743, #222a34); 6 | background-attachment: fixed; 7 | box-shadow: inset 0px 5px 0px 0px #B8D310; } 8 | 9 | body { 10 | background-color: #464749; 11 | background-repeat: no-repeat; } 12 | 13 | #bentobox { 14 | fill: #B8D310; } 15 | 16 | a { 17 | color: #989A9F; } 18 | 19 | a:hover { 20 | color: #B8D310; } 21 | 22 | .top-bar a { 23 | color: #989A9F; } 24 | 25 | .panel h2 { 26 | color: #B1B1B1; } 27 | 28 | .panel h2.is-highlighted { 29 | color: #FFFFFF; } 30 | -------------------------------------------------------------------------------- /content/5_design-news/category.txt: -------------------------------------------------------------------------------- 1 | Title: Design news 2 | 3 | ---- 4 | 5 | Highlighted: false 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: DesignerNews 13 | linkurl: http://designernews.co 14 | visible: 'true' 15 | - 16 | linklabel: Design milk 17 | linkurl: http://design-milk.com/ 18 | visible: 'true' 19 | - 20 | linklabel: Awwwards 21 | linkurl: http://www.awwwards.com/ 22 | visible: 'true' 23 | - 24 | linklabel: Dezeen 25 | linkurl: http://www.dezeen.com/ 26 | visible: 'true' 27 | - 28 | linklabel: Designboom 29 | linkurl: http://www.designboom.com/ 30 | visible: 'true' 31 | 32 | ---- 33 | 34 | Uuid: iaNs4FFOcQVEAVU6 -------------------------------------------------------------------------------- /assets/scss/themes/theme-jade.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox jade theme 3 | */ 4 | 5 | $background-color: #E1EBCB; 6 | $logo-color: #487684; 7 | $link-color: #2E3E43; 8 | $link-hover-color: #EFEEEE; 9 | $heading-color: #325d79; 10 | $heading-highlight-color: #D44E12; 11 | 12 | $background-color: #E1EBCB; 13 | $logo-color: #001415; 14 | $link-color: #224537; 15 | $link-hover-color: #FF5D56; 16 | $heading-color: #0B7770; 17 | $heading-highlight-color: #EE3940; 18 | 19 | 20 | 21 | body { 22 | background-color: #E1EBCB; 23 | background-image: linear-gradient(to right bottom, #e1ebcb, #cce2be, #b4d9b4, #99d0ad, #7cc7a9); 24 | } 25 | 26 | .header { 27 | z-index: 1000; 28 | } 29 | 30 | // 31 | // import the scss to apply this 32 | // 33 | @import "theme-selectors"; 34 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-retro-neon.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox retro neon theme 3 | */ 4 | $syntax-uno: 195; 5 | $syntax-duo: 310; 6 | 7 | // Uno hue 8 | $uno-1: hsl($syntax-uno, 76%, 10%); 9 | $uno-2: hsl($syntax-uno, 58%, 34%); 10 | $uno-3: hsl($syntax-uno, 34%, 54%); 11 | $uno-4: hsl($syntax-uno, 16%, 66%); 12 | 13 | // Duo hue 14 | $duo-1: hsl($syntax-duo, 92%, 28%); 15 | $duo-2: hsl($syntax-duo, 46%, 62%); 16 | $duo-3: hsl($syntax-duo, 6%, 70%); 17 | 18 | $syntax-bg: hsl($syntax-uno, 33%, 97%); 19 | 20 | $background-color: $uno-1; 21 | $logo-color: $uno-2; 22 | $link-color: $uno-3; 23 | $link-hover-color: $duo-2; 24 | $heading-color: $uno-2; 25 | $heading-highlight-color: $duo-2; 26 | 27 | // 28 | // import the scss to apply this 29 | // 30 | @import "theme-selectors"; 31 | -------------------------------------------------------------------------------- /content/4_startup-news/category.txt: -------------------------------------------------------------------------------- 1 | Title: Startup news 2 | 3 | ---- 4 | 5 | Highlighted: false 6 | 7 | ---- 8 | 9 | Links: 10 | 11 | - 12 | linklabel: Hacker news 13 | linkurl: https://news.ycombinator.com/ 14 | visible: 'true' 15 | - 16 | linklabel: Macro 17 | linkurl: http://macro.ycombinator.com/ 18 | visible: 'true' 19 | - 20 | linklabel: TechCrunch 21 | linkurl: http://techcrunch.com/ 22 | visible: 'true' 23 | - 24 | linklabel: Lobsters 25 | linkurl: https://lobste.rs/ 26 | visible: 'true' 27 | - 28 | linklabel: Product hunt 29 | linkurl: https://www.producthunt.com/ 30 | visible: 'true' 31 | - 32 | linklabel: Growth hackers 33 | linkurl: http://growthhackers.com/ 34 | visible: 'true' 35 | 36 | ---- 37 | 38 | Uuid: 6l33g3fDVj8MQxej -------------------------------------------------------------------------------- /assets/scss/themes/theme-shaped.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox shaped theme 3 | */ 4 | 5 | $background-color: #EBF0F1; 6 | $logo-color: #fff; 7 | $link-color: mix(#000, #697780, 5%); 8 | $link-hover-color: #741E90; 9 | $heading-color: mix(#000, #40494E, 40%); 10 | $heading-highlight-color: #E58F01; 11 | 12 | 13 | .top-stripe { 14 | width: 100%; 15 | height: 90px; 16 | background-color:#DD4963; 17 | background:radial-gradient(circle farthest-corner at 120% 250%, #FED193 0, #FDA780 18%, #DA657A 30%, #732C95 60%, #271B78 100%); 18 | float: left; 19 | position: absolute; 20 | top:0; 21 | } 22 | 23 | .header { 24 | z-index: 1000; 25 | } 26 | 27 | .wrapper { 28 | 29 | padding-bottom: -100px; 30 | } 31 | 32 | // 33 | // import the scss to apply this 34 | // 35 | @import "theme-selectors"; 36 | -------------------------------------------------------------------------------- /assets/images/logo-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/themes/theme-shaped.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox shaped theme 3 | */ 4 | .top-stripe { 5 | width: 100%; 6 | height: 90px; 7 | background-color: #DD4963; 8 | background: radial-gradient(circle farthest-corner at 120% 250%, #FED193 0, #FDA780 18%, #DA657A 30%, #732C95 60%, #271B78 100%); 9 | float: left; 10 | position: absolute; 11 | top: 0; } 12 | 13 | .header { 14 | z-index: 1000; } 15 | 16 | .wrapper { 17 | padding-bottom: -100px; } 18 | 19 | body { 20 | background-color: #EBF0F1; 21 | background-repeat: no-repeat; } 22 | 23 | #bentobox { 24 | fill: #fff; } 25 | 26 | a { 27 | color: #64717a; } 28 | 29 | a:hover { 30 | color: #741E90; } 31 | 32 | .top-bar a { 33 | color: #64717a; } 34 | 35 | .panel h2 { 36 | color: #262c2f; } 37 | 38 | .panel h2.is-highlighted { 39 | color: #E58F01; } 40 | -------------------------------------------------------------------------------- /content/8_sounds/category.txt: -------------------------------------------------------------------------------- 1 | Title: Sounds while working 2 | 3 | ---- 4 | 5 | Links: 6 | 7 | - 8 | linklabel: myNoise 9 | linkurl: http://mynoise.net/noiseMachines.php 10 | visible: 'true' 11 | - 12 | linklabel: Raining.fm 13 | linkurl: http://raining.fm/ 14 | visible: 'true' 15 | - 16 | linklabel: SoundDrown 17 | linkurl: http://soundrown.com/ 18 | visible: 'true' 19 | - 20 | linklabel: Noisli 21 | linkurl: http://www.noisli.com/ 22 | visible: 'true' 23 | - 24 | linklabel: A Soft Murmur 25 | linkurl: http://asoftmurmur.com/ 26 | visible: 'true' 27 | - 28 | linklabel: Mindscapes 29 | linkurl: http://www.mindscapes.co/ 30 | visible: 'true' 31 | - 32 | linklabel: Coffitivity 33 | linkurl: https://coffitivity.com/ 34 | visible: 'true' 35 | 36 | ---- 37 | 38 | Highlighted: false 39 | 40 | ---- 41 | 42 | Uuid: khJdEApq6CdJyJdv -------------------------------------------------------------------------------- /assets/scss/themes/theme-dark-sea.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | DuoTone - dark sea 3 | Roughly based on the Atom color scheme with the same name 4 | original by Simurai 5 | http://simurai.com/projects/2016/01/01/duotone-themes 6 | */ 7 | $syntax-uno: 212; 8 | $syntax-duo: 160; 9 | 10 | $duo-1: hsl($syntax-duo, 99%, 70%); 11 | $duo-2: hsl($syntax-duo, 72%, 48%); 12 | $duo-3: hsl($syntax-duo, 12%, 32%); 13 | 14 | $uno-1: hsl($syntax-uno, 99%, 92%); 15 | $uno-2: hsl($syntax-uno, 88%, 77%); 16 | $uno-3: hsl($syntax-uno, 24%, 54%); 17 | $uno-4: hsl($syntax-uno, 12%, 38%); 18 | 19 | $syntax-bg: hsl($syntax-uno, 24%, 15%); 20 | 21 | $background-color: $syntax-bg; 22 | $logo-color: $uno-2; 23 | $link-color: $uno-3; 24 | $link-hover-color: $duo-2; 25 | $heading-color: $uno-2; 26 | $heading-highlight-color: $duo-2; 27 | 28 | // 29 | // import the scss to apply this 30 | // 31 | @import "theme-selectors"; 32 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-dark-space.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | DuoTone - dark space 3 | Roughly based on the Atom color scheme with the same name 4 | original by Simurai 5 | http://simurai.com/projects/2016/01/01/duotone-themes 6 | */ 7 | $syntax-uno: 240; 8 | $syntax-duo: 20; 9 | 10 | $duo-1: hsl($syntax-duo, 99%, 66%); 11 | $duo-2: hsl($syntax-duo, 72%, 52%); 12 | $duo-3: hsl($syntax-duo, 16%, 36%); 13 | 14 | $uno-1: hsl($syntax-uno, 99%, 96%); 15 | $uno-2: hsl($syntax-uno, 28%, 70%); 16 | $uno-3: hsl($syntax-uno, 12%, 52%); 17 | $uno-4: hsl($syntax-uno, 8%, 38%); 18 | 19 | $syntax-bg: hsl($syntax-uno, 12%, 16%); 20 | 21 | $background-color: $syntax-bg; 22 | $logo-color: $duo-2; 23 | $link-color: $uno-3; 24 | $link-hover-color: $duo-2; 25 | $heading-color: $uno-2; 26 | $heading-highlight-color: $duo-2; 27 | 28 | // 29 | // import the scss to apply this 30 | // 31 | @import "theme-selectors"; 32 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-amber.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox amber theme 3 | */ 4 | 5 | $background-color: #322D29; 6 | $logo-color: #FECB52; 7 | $link-color: #89776C; 8 | $link-hover-color: #FECB52; 9 | $heading-color: #BFA059; 10 | $heading-highlight-color: #FECB52; 11 | 12 | 13 | body { 14 | 15 | background: #322D29; 16 | 17 | background-image: -webkit-linear-gradient(180deg, #312B27 0%, #24201D 100%); 18 | background-image: -moz-linear-gradient(180deg, #312B27 0%, #24201D 100%); 19 | background-image: -o-linear-gradient(180deg, #312B27 0%, #24201D 100%); 20 | background-image: linear-gradient(180deg, #312B27 0%, #24201D 100%); 21 | 22 | } 23 | 24 | .top-stripe { 25 | width: 100%; 26 | height: 2px; 27 | background-color:#FECB52; 28 | float: left; 29 | position: absolute; 30 | top:0; 31 | } 32 | 33 | .header { 34 | z-index: 1000; 35 | } 36 | 37 | // 38 | // import the scss to apply this 39 | // 40 | @import "theme-selectors"; 41 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-club.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox club theme 3 | */ 4 | 5 | $background-color: #282537; 6 | $logo-color: #8B733D; 7 | $link-color: #787795; 8 | $link-hover-color: #FFF; 9 | $heading-color: #AEADCB; 10 | $heading-highlight-color: #8B733D; 11 | 12 | body { 13 | background: #282537; 14 | background-image: -webkit-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 15 | background-image: -moz-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 16 | background-image: -o-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 17 | background-image: radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 18 | 19 | 20 | } 21 | 22 | .top-stripe { 23 | width: 100%; 24 | height: 2px; 25 | background: #8B733D; 26 | float: left; 27 | position: absolute; 28 | margin-top:20px; 29 | } 30 | 31 | .header { 32 | z-index: 1000; 33 | } 34 | 35 | // 36 | // import the scss to apply this 37 | // 38 | @import "theme-selectors"; 39 | -------------------------------------------------------------------------------- /assets/css/themes/theme-amber.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox amber theme 3 | */ 4 | body { 5 | background: #322D29; 6 | background-image: -webkit-linear-gradient(180deg, #312B27 0%, #24201D 100%); 7 | background-image: -moz-linear-gradient(180deg, #312B27 0%, #24201D 100%); 8 | background-image: -o-linear-gradient(180deg, #312B27 0%, #24201D 100%); 9 | background-image: linear-gradient(180deg, #312B27 0%, #24201D 100%); } 10 | 11 | .top-stripe { 12 | width: 100%; 13 | height: 2px; 14 | background-color: #FECB52; 15 | float: left; 16 | position: absolute; 17 | top: 0; } 18 | 19 | .header { 20 | z-index: 1000; } 21 | 22 | body { 23 | background-color: #322D29; 24 | background-repeat: no-repeat; } 25 | 26 | #bentobox { 27 | fill: #FECB52; } 28 | 29 | a { 30 | color: #89776C; } 31 | 32 | a:hover { 33 | color: #FECB52; } 34 | 35 | .top-bar a { 36 | color: #89776C; } 37 | 38 | .panel h2 { 39 | color: #BFA059; } 40 | 41 | .panel h2.is-highlighted { 42 | color: #FECB52; } 43 | -------------------------------------------------------------------------------- /assets/css/themes/theme-club.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox club theme 3 | */ 4 | body { 5 | background: #282537; 6 | background-image: -webkit-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 7 | background-image: -moz-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 8 | background-image: -o-radial-gradient(top, circle cover, #252233 0%, #12162D 80%); 9 | background-image: radial-gradient(top, circle cover, #252233 0%, #12162D 80%); } 10 | 11 | .top-stripe { 12 | width: 100%; 13 | height: 2px; 14 | background: #8B733D; 15 | float: left; 16 | position: absolute; 17 | margin-top: 20px; } 18 | 19 | .header { 20 | z-index: 1000; } 21 | 22 | body { 23 | background-color: #282537; 24 | background-repeat: no-repeat; } 25 | 26 | #bentobox { 27 | fill: #8B733D; } 28 | 29 | a { 30 | color: #787795; } 31 | 32 | a:hover { 33 | color: #FFF; } 34 | 35 | .top-bar a { 36 | color: #787795; } 37 | 38 | .panel h2 { 39 | color: #AEADCB; } 40 | 41 | .panel h2.is-highlighted { 42 | color: #8B733D; } 43 | -------------------------------------------------------------------------------- /assets/images/logo-angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/logo-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # System files 2 | # ------------ 3 | 4 | Icon 5 | .DS_Store 6 | 7 | # Temporary files 8 | # --------------- 9 | 10 | /media/* 11 | !/media/index.html 12 | 13 | # Lock files 14 | # --------------- 15 | .lock 16 | 17 | # -------------SECURITY------------- 18 | # NEVER publish these files via Git! 19 | # -------------SECURITY------------- 20 | 21 | # Cache Files 22 | # --------------- 23 | 24 | /site/cache/* 25 | !/site/cache/index.html 26 | 27 | # Accounts 28 | # --------------- 29 | 30 | /site/accounts/* 31 | !/site/accounts/index.html 32 | 33 | # Sessions 34 | # --------------- 35 | 36 | /site/sessions/* 37 | !/site/sessions/index.html 38 | 39 | # License 40 | # --------------- 41 | /site/config/.license 42 | 43 | # Own additions - so only the theme part is in the repository 44 | # ----------------------------------------------------------- 45 | *.codekit3 46 | *.scssc 47 | *.sublime-project 48 | *.sublime-workspace 49 | .editorconfig 50 | .htaccess 51 | assets/scss/.sass-cache/ 52 | index.php 53 | kirby/ 54 | license.md 55 | site/config/config.php 56 | site/plugins/ 57 | site/cache/index.html 58 | site/accounts/index.html 59 | site/sessions/index.html 60 | media/index.html 61 | static/* 62 | -------------------------------------------------------------------------------- /assets/scss/themes/theme-air.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox air theme 3 | */ 4 | 5 | $background-color: #dfe9f3; 6 | $logo-color: #000; 7 | $link-color: #495057; 8 | $link-hover-color: #339af0; 9 | $heading-color: #12b886; 10 | $heading-highlight-color: #228be6; 11 | 12 | body { 13 | -webkit-font-smoothing: antialiased; 14 | 15 | background-image: -webkit-linear-gradient(to top, #dfe9f3 0%, white 100%);; 16 | background-image: -moz-linear-gradient(to top, #dfe9f3 0%, white 100%);; 17 | background-image: -o-linear-gradient(to top, #dfe9f3 0%, white 100%);; 18 | background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);; 19 | } 20 | 21 | .top-stripe { 22 | width: 100%; 23 | height: 15px; 24 | background-color:#12b886; 25 | background-image: -webkit-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 26 | background-image: -moz-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 27 | background-image: -o-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 28 | background-image: linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 29 | float: left; 30 | position: absolute; 31 | top:0; 32 | } 33 | 34 | // 35 | // import the scss to apply this 36 | // 37 | @import "theme-selectors"; 38 | -------------------------------------------------------------------------------- /assets/css/themes/theme-air.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Bentobox air theme 3 | */ 4 | body { 5 | -webkit-font-smoothing: antialiased; 6 | background-image: -webkit-linear-gradient(to top, #dfe9f3 0%, white 100%); 7 | background-image: -moz-linear-gradient(to top, #dfe9f3 0%, white 100%); 8 | background-image: -o-linear-gradient(to top, #dfe9f3 0%, white 100%); 9 | background-image: linear-gradient(to top, #dfe9f3 0%, white 100%); } 10 | 11 | .top-stripe { 12 | width: 100%; 13 | height: 15px; 14 | background-color: #12b886; 15 | background-image: -webkit-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 16 | background-image: -moz-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 17 | background-image: -o-linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 18 | background-image: linear-gradient(to right, #12b886, #00b3ad, #00aacf, #009de4, #228be6); 19 | float: left; 20 | position: absolute; 21 | top: 0; } 22 | 23 | body { 24 | background-color: #dfe9f3; 25 | background-repeat: no-repeat; } 26 | 27 | #bentobox { 28 | fill: #000; } 29 | 30 | a { 31 | color: #495057; } 32 | 33 | a:hover { 34 | color: #339af0; } 35 | 36 | .top-bar a { 37 | color: #495057; } 38 | 39 | .panel h2 { 40 | color: #12b886; } 41 | 42 | .panel h2.is-highlighted { 43 | color: #228be6; } 44 | -------------------------------------------------------------------------------- /bentobox-license.md: -------------------------------------------------------------------------------- 1 | # Bentobox Theme End User License Agreement 2 | The Bentobox Kirby theme is shared under the MIT license as stated below. For the Kirby CMS see the separate Kirby End User License Agreement. 3 | 4 | revised: May 15, 2021 5 | 6 | # The MIT License (MIT) 7 | 8 | Copyright (c) 2021 Bob Corporaal 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | -------------------------------------------------------------------------------- /assets/favicons/favicon.svg: -------------------------------------------------------------------------------- 1 | favicon-svg -------------------------------------------------------------------------------- /assets/css/bentobox.css: -------------------------------------------------------------------------------- 1 | *, 2 | *:before, 3 | *:after { 4 | box-sizing: border-box; } 5 | 6 | html { 7 | font-size: 100%; 8 | height: 100%; } 9 | 10 | body { 11 | font-weight: normal; 12 | font-style: normal; 13 | line-height: 1.875rem; 14 | margin: 0; 15 | padding: 0; } 16 | 17 | h1, 18 | p { 19 | margin: 0 0 1em 0; } 20 | 21 | .wrapper { 22 | display: grid; 23 | margin: 0 auto; 24 | padding: 2.8125rem; 25 | grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 26 | grid-auto-rows: minmax(20px, auto); } 27 | 28 | .wrapper > * { 29 | margin: 0; } 30 | 31 | .panel { 32 | padding-bottom: 1.875rem; } 33 | 34 | .header, 35 | .footer { 36 | grid-column: 1 / -1; } 37 | 38 | #logo { 39 | height: 100%; } 40 | 41 | #logo-container { 42 | height: 1.6875rem; } 43 | 44 | a { 45 | text-decoration: none; 46 | transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } 47 | 48 | .top-bar { 49 | height: 3.75rem; } 50 | .top-bar a { 51 | position: relative; 52 | display: inline-block; } 53 | 54 | .top-panel { 55 | height: 3.75rem; } 56 | .top-panel ul { 57 | margin: 0; 58 | padding: 0; } 59 | .top-panel ul > li { 60 | margin: 0 1.25rem 0 0; 61 | padding: 0; 62 | display: inline; 63 | transition: all 0.2s ease-in-out; } 64 | .top-panel ul > li:hover { 65 | margin: 0 1rem 0 0.25rem; } 66 | .top-panel ul > li:nth-last-child(2) { 67 | margin: 0; } 68 | .top-panel ul > li:nth-last-child(2):hover { 69 | margin: 0 -0.25rem 0 0.25rem; } 70 | 71 | .panel h2 { 72 | padding: 0; 73 | margin: 0; 74 | font-weight: normal; 75 | font-style: normal; 76 | line-height: 1.875rem; } 77 | 78 | .panel ul { 79 | list-style: none; 80 | padding: 0; 81 | margin: 0; } 82 | 83 | .panel ul > li { 84 | margin: 0; 85 | padding: 0; } 86 | 87 | .panel ul > li > a:hover { 88 | padding-left: 0.25rem; } 89 | 90 | .edit-link { 91 | visibility: hidden; 92 | margin-left: 0.625rem; } 93 | 94 | h2:hover .edit-link, .top-panel > ul:hover .edit-link { 95 | visibility: visible; } 96 | -------------------------------------------------------------------------------- /assets/images/logo-rounded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/logo-script.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/bentobox.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Baseline css - themes add custom colors to this 3 | // 4 | 5 | // 6 | // basic settings 7 | // 8 | $baseline: 1.875rem; 9 | $vertical-margin: $baseline; 10 | $horizontal-margin: $baseline*1.5; 11 | $hover-shift: 0.25rem; 12 | $hover-time: 0.2s; 13 | $hover-easing: cubic-bezier(0.645, 0.045, 0.355, 1); 14 | 15 | *, 16 | *:before, 17 | *:after { 18 | box-sizing: border-box; 19 | } 20 | 21 | html { 22 | font-size: 100%; 23 | height: 100%; 24 | } 25 | 26 | body { 27 | font-weight: normal; 28 | font-style: normal; 29 | line-height: $baseline; 30 | margin: 0; 31 | padding:0; 32 | } 33 | 34 | h1, 35 | p { 36 | margin: 0 0 1em 0; 37 | } 38 | 39 | .wrapper { 40 | display: grid; 41 | margin: 0 auto; 42 | padding: 1.5*$baseline; 43 | grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 44 | grid-auto-rows: minmax(20px, auto); 45 | } 46 | 47 | .wrapper > * { 48 | margin: 0; 49 | } 50 | 51 | .panel { 52 | padding-bottom: $vertical-margin; 53 | } 54 | 55 | .header, 56 | .footer { 57 | grid-column: 1 / -1; 58 | } 59 | 60 | #logo { 61 | height:100%; 62 | } 63 | 64 | #logo-container{ 65 | height:$baseline*0.9; 66 | } 67 | 68 | a { 69 | text-decoration: none; 70 | transition: all $hover-time $hover-easing; 71 | } 72 | 73 | .top-bar { 74 | height:$baseline*2; 75 | 76 | a { 77 | position: relative; 78 | display: inline-block; 79 | } 80 | } 81 | 82 | .top-panel { 83 | height:$baseline*2; 84 | ul { 85 | margin:0; 86 | padding:0; 87 | } 88 | 89 | ul>li { 90 | margin:0 1.25rem 0 0; 91 | padding:0; 92 | display:inline; 93 | transition: all 0.2s ease-in-out; 94 | 95 | &:hover { 96 | margin:0 (1.25rem - $hover-shift) 0 $hover-shift; 97 | } 98 | 99 | &:nth-last-child(2) { 100 | margin:0; 101 | } 102 | 103 | &:nth-last-child(2):hover { 104 | margin:0 -1*$hover-shift 0 $hover-shift; 105 | } 106 | } 107 | } 108 | 109 | .panel { 110 | h2 { 111 | padding:0; 112 | margin:0; 113 | font-weight: normal; 114 | font-style: normal; 115 | line-height: $baseline; 116 | } 117 | 118 | ul { 119 | list-style: none; 120 | padding:0; 121 | margin:0; 122 | } 123 | 124 | ul>li { 125 | margin:0; 126 | padding:0; 127 | } 128 | 129 | ul>li>a:hover { 130 | padding-left: $hover-shift; 131 | } 132 | } 133 | 134 | .edit-link { 135 | visibility: hidden; 136 | margin-left: 0.625rem; 137 | } 138 | 139 | h2:hover .edit-link, .top-panel>ul:hover .edit-link { 140 | visibility:visible; 141 | } 142 | 143 | -------------------------------------------------------------------------------- /assets/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/templates/default.php: -------------------------------------------------------------------------------- 1 | user() && $site->passwordprotected()) go($site->panel()->url()) ?> 2 | 3 | 4 | 5 | 6 | 7 | <?= $site->title()->html() ?> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 25 |
26 |
27 |
28 | 35 |
36 |
    37 | index()->listed()->filterBy('intendedTemplate', 'category'); 39 | $links = $categories->first()->links()->yaml(); 40 | ?> 41 | 42 | 43 |
  • 44 | 45 | 46 |
  • 47 |
48 |
49 |
50 | 51 | slice(1) as $category): 53 | $links = $category->links()->yaml(); 54 | $adminURL = url('/panel/pages/'.$category->uri()); 55 | ?> 56 |
57 |

highlighted()=='true','class="is-highlighted"') ?>> 59 | title(); ?> 60 | 61 |

62 | 69 |
70 | 71 | 72 |
73 | 74 | 75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /site/snippets/customfont.php: -------------------------------------------------------------------------------- 1 | 98 | 99 | @import url('&display=swap'); 100 | 101 | body, .panel h2 { 102 | font-size: rem; 103 | font-family: ; 104 | letter-spacing: px; 105 | line-height: rem !important; 106 | } 107 | -------------------------------------------------------------------------------- /site/blueprints/site.yml: -------------------------------------------------------------------------------- 1 | title: Site 2 | 3 | tabs: 4 | 5 | # content tab 6 | links: 7 | label: Links 8 | icon: text 9 | 10 | sections: 11 | 12 | # draft categories 13 | drafts: 14 | headline: Draft categories 15 | type: pages 16 | status: draft 17 | templates: category 18 | 19 | # visible categories 20 | published: 21 | headline: Visible categories 22 | type: pages 23 | status: listed 24 | templates: category 25 | 26 | # other tab 27 | other: 28 | label: Other content 29 | icon: template 30 | 31 | sections: 32 | 33 | # unlisted content 34 | unlisted: 35 | headline: Unlisted pages 36 | type: pages 37 | status: unlisted 38 | 39 | # settings tab 40 | settings: 41 | label: Bentobox settings 42 | icon: settings 43 | 44 | settings: 45 | type: fields 46 | 47 | fields: 48 | 49 | theme: 50 | width: 1/3 51 | label: Theme 52 | type: select 53 | default: dark-sea 54 | options: 55 | air: Air 56 | amber: Amber 57 | club: Club 58 | dark-sea: Dark Sea 59 | dark-space: Dark Space 60 | glow-stick: Glow Stick 61 | jade: Jade 62 | lakeshore: Lake Shore 63 | light-lunch: Light Lunch 64 | minty: Minty 65 | ocean-lights: Ocean Lights 66 | red-sun: Red Sun 67 | retro-neon: Retro Neon 68 | rs-green: RS Green 69 | sci-fi: Sci-fi 70 | shaped: Shaped 71 | summer-night: Summer Night 72 | 73 | logo: 74 | width: 1/3 75 | label: Logo style 76 | type: select 77 | default: script 78 | options: 79 | script: Script (default) 80 | angular: Angular 81 | brush: Brush 82 | icon: Icon 83 | inverse: Inverse 84 | pixel: Pixel 85 | rounded: Rounded 86 | 87 | fontfamily: 88 | width: 1/3 89 | label: Font 90 | type: select 91 | default: system 92 | options: 93 | bitter: Bitter 94 | fira_mono: Fira Mono 95 | fira_sans: Fira Sans 96 | lora: Lora 97 | newsreader: Newsreader 98 | offside: Offside 99 | plex_mono: Plex Mono 100 | plex_sans: Plex Sans 101 | plex_serif: Plex Serif 102 | roboto_condensed: Roboto Condensed 103 | roboto_slab: Roboto Slab 104 | source_serif_pro: Source Serif Pro 105 | space_mono: Space Mono 106 | system: System default 107 | turret_road: Turret Road 108 | ubuntu: Ubuntu 109 | work_sans: Work Sans 110 | 111 | fontsize: 112 | width: 1/3 113 | label: Font size 114 | help: Default is 1.0 rem 115 | type: range 116 | step: 0.05 117 | min: 0.75 118 | max: 1.25 119 | default: 1.0 120 | after: rem 121 | 122 | linespacing: 123 | width: 1/3 124 | label: Line spacing 125 | help: Default is 1.9 rem 126 | type: range 127 | step: 0.1 128 | min: 1.2 129 | max: 2.2 130 | default: 1.9 131 | after: rem 132 | 133 | letterspacing: 134 | width: 1/3 135 | label: Letter spacing 136 | help: Default is 0 px 137 | type: range 138 | step: 0.1 139 | min: -1 140 | max: 1 141 | default: 0 142 | after: px 143 | 144 | passwordprotected: 145 | label: Protect with password 146 | type: toggle 147 | text: 148 | - "no" 149 | - "yes" 150 | help: If set to yes, the page is only available to logged-in users. Logged-out users will be redirected to the panel log-in page. -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | 2 |

Bentobox logo

3 | 4 | # Bentobox 5 | A simple theme to create a custom new tab link page using the Kirby CMS. 6 | 7 | ## About 8 | 9 |

Bentobox example

10 | 11 | Bentobox is a very simple theme for [Kirby](http://getkirby.com) to organize all your favourite links on one page. For an example see [the demo installation](http://reefscape.net/demo/bentobox). 12 | 13 | I was looking for a very clean customisable new tab page but none of the existing ones fitted my needs. They either had too much design, too much functionality or could not be customised completely. So I rolled my own version. 14 | 15 | The result is a very basic no-frills page that can display lists with your favorite links. Different themes and font options are available to tweak it to your liking. For optimal speed and privacy you can run the page locally and sync the contents across computers. 16 | 17 | 18 | ## What is Kirby? 19 | [Kirby](http://getkirby.com) is a lightweight, flexible and file-based CMS. 20 | 21 | ## Installation 22 | The installation is the same as with any other Kirby theme. 23 | 24 | 1. First download and install Kirby. You can download the starter kit either from [GetKirby.com](https://getkirby.com/downloads) or [Github](https://github.com/getkirby/starterkit). 25 | 1. Check if the installation is running properly. Don't forget the hidden `.htaccess` file! 26 | 1. Download this theme. 27 | 1. Remove the default `/assets`, `/content` folders from the installation and replace them with the downloaded ones. 28 | 1. Finally inside the `/site` folder replace the `/blueprints`, `/config` and `/templates` folders. 29 | 30 | View your site in a browser and you should now see a page with demo content. Clicking on the logo brings you to the login and the Kirby Panel. When do this for the first time, you will be asked to create an account. 31 | 32 | ## How to use 33 | Using Bentobox is simple. You can either add or edit links by editing the text files in the `/content` folder or through the Panel (click on the logo or the dots next to the title of a list). The first time you enter the Panel you will be asked to create an account. 34 | 35 | ### Editing or adding links 36 | In the `/content` folder each folder corresponds to a block of links. The sort order determines the order of the blocks on the page. When using the Panel a page corresponds to a block. See the [Kirby docs](https://getkirby.com/docs) for more instructions on editing content. 37 | 38 | The first set of links is always displayed horizontally. 39 | 40 | ### Using as a new tab page 41 | Bentobox was created to be used as a home or new tab page in your browser. In most browsers you can set this directly in the browser settings. In Chrome and newer versions of Firefox this is not possible by default. You can use [New Tab Redirect](https://chrome.google.com/webstore/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna) extension for Chrome or the [New Tab Override](https://addons.mozilla.org/en-US/firefox/addon/new-tab-override/) extension for Firefox to get this functionality. 42 | 43 | ### Hosting locally 44 | To make the page load faster and work without an internet connection you can host it on your own computer. For example using [VirtualHostX](https://clickontyler.com/virtualhostx/) or [MAMP](https://www.mamp.info). 45 | 46 | When hosting locally you can edit your `/etc/hosts` file to get a nicer url. If you don't want to edit that file by hand you can use something like [Gas mask](https://github.com/2ndalpha/gasmask). 47 | 48 | Since Kirby is file based you can sync your page between computers by putting the site folder in Dropbox or Google Drive. 49 | 50 | ### Customise colors 51 | You can select a color theme from the site options in the Kirby Panel. If you want to create your own theme you can create and compile a new scss-based theme file in `assets/scss/themes`. Or directly add a css file in `assets/css/themes`. To be able to select the theme you must also add the name of the file to the list in `site/blueprints/site.yml`. 52 | 53 | ## History 54 | 55 | 0.1.0 - Initial release
56 | 0.1.1 - Small tweaks and more demo content
57 | 0.1.2 - More small textual changes
58 | 0.2.0 - Added option to select the theme in the Panel. New themes included
59 | 0.2.1 - Theme tweaks and a few more added
60 | 0.2.2 - Fixed gradient background, Sunset and Pink Party themes added, optimized logo size
61 | 0.2.3 - Improved readme
62 | 0.2.4 - Update demo link
63 | 0.3.0 - Restructered HTML to use CSS Grid and small fixes
64 | 0.3.1 - Quick fixes for a number of themes
65 | 0.4.0 - Updated for Kirby 3
66 | 0.5.0 - Custom font selection, refined selection of themes
67 | 0.5.1 - Small fixes
68 | 0.6.0 - New favicon style, custom logo options
69 | 0.6.1 - Extended font selection, font spacing and line height options
70 | 0.7.0 - Add option to password protect the page
71 | 0.7.1 - Small fix to password option 72 | 73 | 74 | ## Ideas (that may or may not get implemented in the future) 75 | 76 | - Add modules for other content through rss feeds 77 | - Add daily schedule based on calendar 78 | - Make it possible to add notes or actions for the day 79 | - Add or connect to todays to do list 80 | - Multiple pages of links 81 | - Make theme editable from the Panel 82 | - Improve layout flow for different window sizes 83 | - Pick color per group 84 | 85 | ## Contributing 86 | 87 | Feedback and pull requests are welcome. Best ways to contribute: 88 | * Star it on GitHub - if you use it and like it please star it 89 | * Open [issues/tickets](https://github.com/bcorporaal/Bentobox/issues) 90 | * Submit fixes and/or improvements with [Pull Requests](https://github.com/bcorporaal/Bentobox/pulls) 91 | 92 | ## Contact 93 | 94 | If you have any questions or comments you can contact me via [email](mailto:dev@reefscape.net). 95 | 96 | 97 | ## Credits 98 | 99 | Bentobox includes the following: 100 | 101 | **Simurai Duotone themes**
102 | Licensed under the MIT license.
103 | Some included color schemes are based on the [Atom Duotone themes](http://simurai.com/projects/2016/01/01/duotone-themes) created by [Simurai](http://simurai.com/). 104 | 105 | 106 | ## License 107 | 108 | Copyright (c) 2021 Bob Corporaal
109 | Licensed under the MIT license. 110 | -------------------------------------------------------------------------------- /assets/images/logo-brush.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------