diff --git a/.gitignore b/.gitignore index f9c7abc..55afc98 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ _site .sass-cache Gemfile.lock *.gem -*.code-workspace \ No newline at end of file +*.code-workspace + +ØyvindSkaaden.jpg \ No newline at end of file diff --git a/.rubocop.yml b/.rubocop.yml deleted file mode 100644 index 648dfb1..0000000 --- a/.rubocop.yml +++ /dev/null @@ -1,6 +0,0 @@ -AllCops: - Exclude: - - _site/**/* - -Metrics/LineLength: - Enabled: false diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a871f2a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: ruby -cache: bundler -rvm: 2.6 - -install: script/bootstrap -script: script/cibuild diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 7f4f5e9..0000000 --- a/Gemfile +++ /dev/null @@ -1,5 +0,0 @@ -# frozen_string_literal: true - -source 'https://rubygems.org' - -gemspec diff --git a/README.md b/README.md deleted file mode 100644 index c53707b..0000000 --- a/README.md +++ /dev/null @@ -1,93 +0,0 @@ -# The Minimal theme - -[![Build Status](https://travis-ci.org/pages-themes/minimal.svg?branch=master)](https://travis-ci.org/pages-themes/minimal) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-minimal.svg)](https://badge.fury.io/rb/jekyll-theme-minimal) - -*Minimal is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/minimal), or even [use it today](#usage).* - -![Thumbnail of minimal](thumbnail.png) - -## Usage - -To use the Minimal theme: - -1. Add the following to your site's `_config.yml`: - - ```yml - theme: jekyll-theme-minimal - ``` - -2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`: - - ```ruby - gem "github-pages", group: :jekyll_plugins - ``` - - - -## Customizing - -### Configuration variables - -Minimal will respect the following variables, if set in your site's `_config.yml`: - -```yml -title: [The title of your site] -description: [A short description of your site's purpose] -``` - -Additionally, you may choose to set the following optional variables: - -```yml -logo: [Location of the logo] -show_downloads: ["true" or "false" to indicate whether to provide a download URL] -google_analytics: [Your Google Analytics tracking ID] -``` - -### Stylesheet - -If you'd like to add your own custom styles: - -1. Create a file called `/assets/css/style.scss` in your site -2. Add the following content to the top of the file, exactly as shown: - ```scss - --- - --- - - @import "{{ site.theme }}"; - ``` -3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line - -### Layouts - -If you'd like to change the theme's HTML layout: - -1. [Copy the original template](https://github.com/pages-themes/minimal/blob/master/_layouts/default.html) from the theme's repository
(*Pro-tip: click "raw" to make copying easier*) -2. Create a file called `/_layouts/default.html` in your site -3. Paste the default layout content copied in the first step -4. Customize the layout as you'd like - -## Roadmap - -See the [open issues](https://github.com/pages-themes/minimal/issues) for a list of proposed features (and known issues). - -## Project philosophy - -The Minimal theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying. - -## Contributing - -Interested in contributing to Minimal? We'd love your help. Minimal is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute. - -### Previewing the theme locally - -If you'd like to preview the theme locally (for example, in the process of proposing a change): - -1. Clone down the theme's repository (`git clone https://github.com/pages-themes/minimal`) -2. `cd` into the theme's directory -3. Run `script/bootstrap` to install the necessary dependencies -4. Run `bundle exec jekyll serve` to start the preview server -5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme - -### Running tests - -The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` one before the test script will work. diff --git a/_config.yml b/_config.yml index af52e0a..4a645d0 100644 --- a/_config.yml +++ b/_config.yml @@ -1,21 +1,93 @@ -title: GLaDOS -description: Personlig nettside for Øyvind Skaaden. -description_long: Personlig nettside for Øyvind Skaaden. Inneholder alt av stæsj jeg holder på med på fritiden. -author: Øyvind Skaaden lang: no_NB url: https://glados.no -markdown: kramdown -#baseurl: dev -#permalink: /:categories/:year/:month/:day/:title:output_ext +# Config for your profile. +title: GLaDOS # Site title +name: Øyvind Skaaden # Your name +author: Øyvind Skaaden +avatar: /theme/img/avatar.jpg # Path to an avatar image + +description: Personlig nettside for Øyvind Skaaden. +description_long: Personlig nettside for Øyvind Skaaden. Inneholder alt av stæsj jeg holder på med på fritiden. + +# The theme uses the baseurl throughout, which is useful for running the entire +# site under a subdir, like for this GitHub Pages deployment as a project site. +#baseurl: "/friday-theme" + +# Outputting +permalink: /:categories/:year/:month/:day/:title/ + +# Conversion +markdown: kramdown +highlighter: rouge +excerpt_separator: kramdown: parse_block_html: true + toc_levels: 1..4 -google_analytics: +# Add a directory to hold misc pages, just to keep the root directory clean. +include: ["_pages", "_portfolio"] -theme: jekyll-theme-minimal -logo: assets/img/gladosLogo.svg -show_downloads: false +# Wire in the SASS files in the theme directory. +sass: + sass_dir: theme/_sass + style: compressed + +# Move all content to a seperate folder for cleanes +#collections_dir: content + +# Turn the projects into a collection. +collections: + projects: + output: true + title: Projects + permalink: /:collection/:name/ + portfolio: + output: true + title: portfolio + permalink: /:collection/:name/ + +defaults: +# Turn the profile sidebar on for all pages by default, except for the +# collections, where it is off and replaced by useful things on the sidebar. +# To override this one a page, use +# show_profile: false +# to hide the profile. + - + scope: + path: "" + values: + show_profile: true + - + scope: + path: "_posts" + values: + show_profile: false + layout: defaults/post + - + scope: + path: "_portfolio" + values: + show_profile: false + layout: defaults/portfolio + - + scope: + path: "_projects" + values: + show_profile: false + layout: defaults/project + - + scope: + path: "list" + values: + show_profile: false + layout: defaults/list + - + scope: + path: "courses/*" + values: + show_profile: false + layout: defaults/lecture github: is_project_page: true @@ -23,10 +95,4 @@ github: repository_nwo: oyvindskaaden/glados.no is_user_page: true owner_name: Øyvind Skaaden - owner_url: https://github.com/oyvindskaaden - -collections_dir: pages -collections: - tdt4160: - output: true - permalink: /:collection/:name \ No newline at end of file + owner_url: https://github.com/oyvindskaaden \ No newline at end of file diff --git a/_data/nav.yml b/_data/nav.yml new file mode 100644 index 0000000..e32f4d7 --- /dev/null +++ b/_data/nav.yml @@ -0,0 +1,13 @@ +- title: Home + href: + +- title: About + href: about + +- title: Posts + href: posts + +- title: Documentation + href: projects + + diff --git a/_data/profile.yml b/_data/profile.yml new file mode 100644 index 0000000..701870a --- /dev/null +++ b/_data/profile.yml @@ -0,0 +1,20 @@ +- caption: Friday Theme on GitHub + href: https://github.com/sfreytag/friday-theme + icon: entypo/github.svg + +- caption: Stack Overflow + href: https://stackoverflow.com + icon: icons/stackoverflow.svg + +- caption: Facebook + href: https://www.facebook.com + icon: entypo/facebook.svg + +- caption: Twitter + href: https://www.twitter.com + icon: entypo/twitter.svg + +- caption: London + href: https://www.google.co.uk/maps/place/London/@51.528308,-0.3817765,10z/data=!3m1!4b1!4m5!3m4!1s0x47d8a00baf21de75:0x52963a5addd52a99!8m2!3d51.5073509!4d-0.1277583 + icon: entypo/location-pin.svg + diff --git a/_includes/bars/bottom.html b/_includes/bars/bottom.html new file mode 100644 index 0000000..4aca9d1 --- /dev/null +++ b/_includes/bars/bottom.html @@ -0,0 +1,16 @@ +{% if page.show_profile %} + +
+
+
+ {% include components/profile-avatar.html %} +
+
+
+
+ {% include components/profile-body.html %} +
+
+
+ +{% endif %} diff --git a/_includes/bars/nav.html b/_includes/bars/nav.html new file mode 100644 index 0000000..c8213a7 --- /dev/null +++ b/_includes/bars/nav.html @@ -0,0 +1,20 @@ + \ No newline at end of file diff --git a/_includes/bars/side.html b/_includes/bars/side.html new file mode 100644 index 0000000..2320f3e --- /dev/null +++ b/_includes/bars/side.html @@ -0,0 +1,30 @@ +{% if page.show_profile %} +
+
+ {{site.author.name}} + {% include components/profile-avatar.html %} + {% include components/profile-body.html %} +
+
+{% endif %} + +{% if page.show_tags %} + {% include components/all-tags.html %} +{% endif %} + +{% if page.show_skills %} + {% include components/all-skills.html %} +{% endif %} + +{% if page.path contains '_projects' %} + {% include components/project-meta.html %} +{% endif %} + +{% if page.path contains 'courses' %} + {% include components/project-meta.html %} +{% endif %} + +{% if page.path contains '_posts' %} + {% include components/post-meta.html %} +{% endif %} + diff --git a/_includes/components/all-tags.html b/_includes/components/all-tags.html new file mode 100644 index 0000000..5a819d6 --- /dev/null +++ b/_includes/components/all-tags.html @@ -0,0 +1,17 @@ +{% include utilities/group-by-array.html collection=site.posts field="tags" %} + +
+
+
+
+
Filter by Tag
+
+ {% for tag in group_names %} + + {{ tag }} + + {% endfor %} +
+
+
\ No newline at end of file diff --git a/_includes/components/intro.md b/_includes/components/intro.md new file mode 100644 index 0000000..4fd0422 --- /dev/null +++ b/_includes/components/intro.md @@ -0,0 +1,3 @@ +Friday Theme is a theme for Jekyll using Bootstrap 4.4 designed to build a great personal web site with a portfolio, blog and project documentation. It is compatible with GitHub Pages. It supports all the Bootstrap components, it has blogs with tags, it has syntax highlighting and it has SVG icons. It is customisable with SCSS by simply changing the default boostrap variables. + +It is maintained by Simon Freytag on [GitHub](https://github.com/sfreytag/friday-theme) and it was built originally for [Simon's own portfolio](http://www.freytag.org.uk). diff --git a/_includes/components/lecture-meta.html b/_includes/components/lecture-meta.html new file mode 100644 index 0000000..0c06f20 --- /dev/null +++ b/_includes/components/lecture-meta.html @@ -0,0 +1,19 @@ +
+
+
+
+
På denne siden
+
+ +
+ + {% include entypo/arrow-left.svg %} + + Back to the contents +
+
+
+
+ + diff --git a/_includes/components/post-card.html b/_includes/components/post-card.html new file mode 100644 index 0000000..f0cd021 --- /dev/null +++ b/_includes/components/post-card.html @@ -0,0 +1,26 @@ +
+
+

+ {{ post.title }} +

+
+ {{ post.date | date_to_string }} +
+
+ + {% include entypo/price-tag.svg %} + +
+ {% for tag in post.tags %} + + {{ tag }} + + {% endfor %} +
+
+
+ {{ post.excerpt }} +
+ More... +
+
\ No newline at end of file diff --git a/_includes/components/post-meta.html b/_includes/components/post-meta.html new file mode 100644 index 0000000..f8affda --- /dev/null +++ b/_includes/components/post-meta.html @@ -0,0 +1,26 @@ +
+
+
+
+
{{ page.date | date_to_string }}
+
+
+ + {%include entypo/price-tag.svg %} + + {% for tag in page.tags %} + + {{ tag }} + + {% endfor %} +
+
+ + {% include entypo/arrow-left.svg %} + + Back to all posts +
+
+
+
diff --git a/_includes/components/profile-avatar.html b/_includes/components/profile-avatar.html new file mode 100644 index 0000000..1224f24 --- /dev/null +++ b/_includes/components/profile-avatar.html @@ -0,0 +1,13 @@ +

+ + + +

+

{{site.name}}

+ +

+ + + + {{site.name}} +

\ No newline at end of file diff --git a/_includes/components/profile-body.html b/_includes/components/profile-body.html new file mode 100644 index 0000000..e5e6bf8 --- /dev/null +++ b/_includes/components/profile-body.html @@ -0,0 +1,10 @@ +

+ {% for link in site.data.profile %} + + + {% include {{link.icon}} %} + + {{link.caption}} + + {% endfor %} +

diff --git a/_includes/components/project-meta.html b/_includes/components/project-meta.html new file mode 100644 index 0000000..0c06f20 --- /dev/null +++ b/_includes/components/project-meta.html @@ -0,0 +1,19 @@ +
+
+
+
+
På denne siden
+
+ +
+ + {% include entypo/arrow-left.svg %} + + Back to the contents +
+
+
+
+ + diff --git a/_includes/entypo/500px-with-circle.svg b/_includes/entypo/500px-with-circle.svg new file mode 100644 index 0000000..289ab43 --- /dev/null +++ b/_includes/entypo/500px-with-circle.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/_includes/entypo/500px.svg b/_includes/entypo/500px.svg new file mode 100644 index 0000000..a5662ed --- /dev/null +++ b/_includes/entypo/500px.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/_includes/entypo/add-to-list.svg b/_includes/entypo/add-to-list.svg new file mode 100644 index 0000000..667cdf3 --- /dev/null +++ b/_includes/entypo/add-to-list.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/add-user.svg b/_includes/entypo/add-user.svg new file mode 100644 index 0000000..570a64a --- /dev/null +++ b/_includes/entypo/add-user.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/address.svg b/_includes/entypo/address.svg new file mode 100644 index 0000000..1b97416 --- /dev/null +++ b/_includes/entypo/address.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/adjust.svg b/_includes/entypo/adjust.svg new file mode 100644 index 0000000..5b11de7 --- /dev/null +++ b/_includes/entypo/adjust.svg @@ -0,0 +1,21 @@ + + + + + + diff --git a/_includes/entypo/air.svg b/_includes/entypo/air.svg new file mode 100644 index 0000000..56bb0af --- /dev/null +++ b/_includes/entypo/air.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/aircraft-landing.svg b/_includes/entypo/aircraft-landing.svg new file mode 100644 index 0000000..579a1ba --- /dev/null +++ b/_includes/entypo/aircraft-landing.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/aircraft-take-off.svg b/_includes/entypo/aircraft-take-off.svg new file mode 100644 index 0000000..4e4f559 --- /dev/null +++ b/_includes/entypo/aircraft-take-off.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/aircraft.svg b/_includes/entypo/aircraft.svg new file mode 100644 index 0000000..a390714 --- /dev/null +++ b/_includes/entypo/aircraft.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/align-bottom.svg b/_includes/entypo/align-bottom.svg new file mode 100644 index 0000000..51ba7d4 --- /dev/null +++ b/_includes/entypo/align-bottom.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/align-horizontal-middle.svg b/_includes/entypo/align-horizontal-middle.svg new file mode 100644 index 0000000..febbd9f --- /dev/null +++ b/_includes/entypo/align-horizontal-middle.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/align-left.svg b/_includes/entypo/align-left.svg new file mode 100644 index 0000000..db38a99 --- /dev/null +++ b/_includes/entypo/align-left.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/align-right.svg b/_includes/entypo/align-right.svg new file mode 100644 index 0000000..910c0bb --- /dev/null +++ b/_includes/entypo/align-right.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/align-top.svg b/_includes/entypo/align-top.svg new file mode 100644 index 0000000..bbf19cf --- /dev/null +++ b/_includes/entypo/align-top.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/align-vertical-middle.svg b/_includes/entypo/align-vertical-middle.svg new file mode 100644 index 0000000..602a4cf --- /dev/null +++ b/_includes/entypo/align-vertical-middle.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/app-store.svg b/_includes/entypo/app-store.svg new file mode 100644 index 0000000..46f0857 --- /dev/null +++ b/_includes/entypo/app-store.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/archive.svg b/_includes/entypo/archive.svg new file mode 100644 index 0000000..3ae4d60 --- /dev/null +++ b/_includes/entypo/archive.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/area-graph.svg b/_includes/entypo/area-graph.svg new file mode 100644 index 0000000..ba7a0d3 --- /dev/null +++ b/_includes/entypo/area-graph.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/arrow-bold-down.svg b/_includes/entypo/arrow-bold-down.svg new file mode 100644 index 0000000..027919d --- /dev/null +++ b/_includes/entypo/arrow-bold-down.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-bold-left.svg b/_includes/entypo/arrow-bold-left.svg new file mode 100644 index 0000000..b6a152b --- /dev/null +++ b/_includes/entypo/arrow-bold-left.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-bold-right.svg b/_includes/entypo/arrow-bold-right.svg new file mode 100644 index 0000000..7cf6c02 --- /dev/null +++ b/_includes/entypo/arrow-bold-right.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-bold-up.svg b/_includes/entypo/arrow-bold-up.svg new file mode 100644 index 0000000..1d3dbe1 --- /dev/null +++ b/_includes/entypo/arrow-bold-up.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-down.svg b/_includes/entypo/arrow-down.svg new file mode 100644 index 0000000..9dcc715 --- /dev/null +++ b/_includes/entypo/arrow-down.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-left.svg b/_includes/entypo/arrow-left.svg new file mode 100644 index 0000000..682cebd --- /dev/null +++ b/_includes/entypo/arrow-left.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-long-down.svg b/_includes/entypo/arrow-long-down.svg new file mode 100644 index 0000000..30ad7b8 --- /dev/null +++ b/_includes/entypo/arrow-long-down.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-long-left.svg b/_includes/entypo/arrow-long-left.svg new file mode 100644 index 0000000..05d8065 --- /dev/null +++ b/_includes/entypo/arrow-long-left.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-long-right.svg b/_includes/entypo/arrow-long-right.svg new file mode 100644 index 0000000..26f284d --- /dev/null +++ b/_includes/entypo/arrow-long-right.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-long-up.svg b/_includes/entypo/arrow-long-up.svg new file mode 100644 index 0000000..87c9274 --- /dev/null +++ b/_includes/entypo/arrow-long-up.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-right.svg b/_includes/entypo/arrow-right.svg new file mode 100644 index 0000000..004c6bc --- /dev/null +++ b/_includes/entypo/arrow-right.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-up.svg b/_includes/entypo/arrow-up.svg new file mode 100644 index 0000000..0552117 --- /dev/null +++ b/_includes/entypo/arrow-up.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/arrow-with-circle-down.svg b/_includes/entypo/arrow-with-circle-down.svg new file mode 100644 index 0000000..13d9e34 --- /dev/null +++ b/_includes/entypo/arrow-with-circle-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/arrow-with-circle-left.svg b/_includes/entypo/arrow-with-circle-left.svg new file mode 100644 index 0000000..0cd3de3 --- /dev/null +++ b/_includes/entypo/arrow-with-circle-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/arrow-with-circle-right.svg b/_includes/entypo/arrow-with-circle-right.svg new file mode 100644 index 0000000..32f2357 --- /dev/null +++ b/_includes/entypo/arrow-with-circle-right.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/arrow-with-circle-up.svg b/_includes/entypo/arrow-with-circle-up.svg new file mode 100644 index 0000000..5c872bb --- /dev/null +++ b/_includes/entypo/arrow-with-circle-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/attachment.svg b/_includes/entypo/attachment.svg new file mode 100644 index 0000000..be76203 --- /dev/null +++ b/_includes/entypo/attachment.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/awareness-ribbon.svg b/_includes/entypo/awareness-ribbon.svg new file mode 100644 index 0000000..a96afa0 --- /dev/null +++ b/_includes/entypo/awareness-ribbon.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/back-in-time.svg b/_includes/entypo/back-in-time.svg new file mode 100644 index 0000000..c39fb15 --- /dev/null +++ b/_includes/entypo/back-in-time.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/back.svg b/_includes/entypo/back.svg new file mode 100644 index 0000000..5368a54 --- /dev/null +++ b/_includes/entypo/back.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/baidu.svg b/_includes/entypo/baidu.svg new file mode 100644 index 0000000..97f1421 --- /dev/null +++ b/_includes/entypo/baidu.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/bar-graph.svg b/_includes/entypo/bar-graph.svg new file mode 100644 index 0000000..3c6406c --- /dev/null +++ b/_includes/entypo/bar-graph.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/basecamp.svg b/_includes/entypo/basecamp.svg new file mode 100644 index 0000000..69eeb44 --- /dev/null +++ b/_includes/entypo/basecamp.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/battery.svg b/_includes/entypo/battery.svg new file mode 100644 index 0000000..0845f62 --- /dev/null +++ b/_includes/entypo/battery.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/beamed-note.svg b/_includes/entypo/beamed-note.svg new file mode 100644 index 0000000..b1dd2b6 --- /dev/null +++ b/_includes/entypo/beamed-note.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/behance.svg b/_includes/entypo/behance.svg new file mode 100644 index 0000000..b70261b --- /dev/null +++ b/_includes/entypo/behance.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/bell.svg b/_includes/entypo/bell.svg new file mode 100644 index 0000000..7599ac6 --- /dev/null +++ b/_includes/entypo/bell.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/blackboard.svg b/_includes/entypo/blackboard.svg new file mode 100644 index 0000000..8c673da --- /dev/null +++ b/_includes/entypo/blackboard.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/block.svg b/_includes/entypo/block.svg new file mode 100644 index 0000000..991844c --- /dev/null +++ b/_includes/entypo/block.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/book.svg b/_includes/entypo/book.svg new file mode 100644 index 0000000..b503997 --- /dev/null +++ b/_includes/entypo/book.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/bookmark.svg b/_includes/entypo/bookmark.svg new file mode 100644 index 0000000..7ad52a2 --- /dev/null +++ b/_includes/entypo/bookmark.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/bookmarks.svg b/_includes/entypo/bookmarks.svg new file mode 100644 index 0000000..c78a31b --- /dev/null +++ b/_includes/entypo/bookmarks.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/bowl.svg b/_includes/entypo/bowl.svg new file mode 100644 index 0000000..d5016dd --- /dev/null +++ b/_includes/entypo/bowl.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/box.svg b/_includes/entypo/box.svg new file mode 100644 index 0000000..e7a4c98 --- /dev/null +++ b/_includes/entypo/box.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/briefcase.svg b/_includes/entypo/briefcase.svg new file mode 100644 index 0000000..c631ea0 --- /dev/null +++ b/_includes/entypo/briefcase.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/browser.svg b/_includes/entypo/browser.svg new file mode 100644 index 0000000..c003b0c --- /dev/null +++ b/_includes/entypo/browser.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/brush.svg b/_includes/entypo/brush.svg new file mode 100644 index 0000000..1adc311 --- /dev/null +++ b/_includes/entypo/brush.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/bucket.svg b/_includes/entypo/bucket.svg new file mode 100644 index 0000000..e778762 --- /dev/null +++ b/_includes/entypo/bucket.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/bug.svg b/_includes/entypo/bug.svg new file mode 100644 index 0000000..cb462eb --- /dev/null +++ b/_includes/entypo/bug.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/cake.svg b/_includes/entypo/cake.svg new file mode 100644 index 0000000..bcd0f63 --- /dev/null +++ b/_includes/entypo/cake.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/calculator.svg b/_includes/entypo/calculator.svg new file mode 100644 index 0000000..160753d --- /dev/null +++ b/_includes/entypo/calculator.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/calendar.svg b/_includes/entypo/calendar.svg new file mode 100644 index 0000000..1e6b70c --- /dev/null +++ b/_includes/entypo/calendar.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/camera.svg b/_includes/entypo/camera.svg new file mode 100644 index 0000000..2ef8b28 --- /dev/null +++ b/_includes/entypo/camera.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/ccw.svg b/_includes/entypo/ccw.svg new file mode 100644 index 0000000..6d06331 --- /dev/null +++ b/_includes/entypo/ccw.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chat.svg b/_includes/entypo/chat.svg new file mode 100644 index 0000000..e18c66e --- /dev/null +++ b/_includes/entypo/chat.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/check.svg b/_includes/entypo/check.svg new file mode 100644 index 0000000..6cd4b32 --- /dev/null +++ b/_includes/entypo/check.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-down.svg b/_includes/entypo/chevron-down.svg new file mode 100644 index 0000000..49f57a5 --- /dev/null +++ b/_includes/entypo/chevron-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-left.svg b/_includes/entypo/chevron-left.svg new file mode 100644 index 0000000..f1451e5 --- /dev/null +++ b/_includes/entypo/chevron-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-right.svg b/_includes/entypo/chevron-right.svg new file mode 100644 index 0000000..72b426c --- /dev/null +++ b/_includes/entypo/chevron-right.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-small-down.svg b/_includes/entypo/chevron-small-down.svg new file mode 100644 index 0000000..fe4c95f --- /dev/null +++ b/_includes/entypo/chevron-small-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-small-left.svg b/_includes/entypo/chevron-small-left.svg new file mode 100644 index 0000000..f482551 --- /dev/null +++ b/_includes/entypo/chevron-small-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-small-right.svg b/_includes/entypo/chevron-small-right.svg new file mode 100644 index 0000000..4f343e6 --- /dev/null +++ b/_includes/entypo/chevron-small-right.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/chevron-small-up.svg b/_includes/entypo/chevron-small-up.svg new file mode 100644 index 0000000..492d205 --- /dev/null +++ b/_includes/entypo/chevron-small-up.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/chevron-thin-down.svg b/_includes/entypo/chevron-thin-down.svg new file mode 100644 index 0000000..813c056 --- /dev/null +++ b/_includes/entypo/chevron-thin-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-thin-left.svg b/_includes/entypo/chevron-thin-left.svg new file mode 100644 index 0000000..1ad1b62 --- /dev/null +++ b/_includes/entypo/chevron-thin-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-thin-right.svg b/_includes/entypo/chevron-thin-right.svg new file mode 100644 index 0000000..c22c355 --- /dev/null +++ b/_includes/entypo/chevron-thin-right.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/chevron-thin-up.svg b/_includes/entypo/chevron-thin-up.svg new file mode 100644 index 0000000..35ca5ca --- /dev/null +++ b/_includes/entypo/chevron-thin-up.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/chevron-up.svg b/_includes/entypo/chevron-up.svg new file mode 100644 index 0000000..7043725 --- /dev/null +++ b/_includes/entypo/chevron-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/chevron-with-circle-down.svg b/_includes/entypo/chevron-with-circle-down.svg new file mode 100644 index 0000000..57e80d4 --- /dev/null +++ b/_includes/entypo/chevron-with-circle-down.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/chevron-with-circle-left.svg b/_includes/entypo/chevron-with-circle-left.svg new file mode 100644 index 0000000..38cd9af --- /dev/null +++ b/_includes/entypo/chevron-with-circle-left.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/chevron-with-circle-right.svg b/_includes/entypo/chevron-with-circle-right.svg new file mode 100644 index 0000000..cda45f1 --- /dev/null +++ b/_includes/entypo/chevron-with-circle-right.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/chevron-with-circle-up.svg b/_includes/entypo/chevron-with-circle-up.svg new file mode 100644 index 0000000..3fabb87 --- /dev/null +++ b/_includes/entypo/chevron-with-circle-up.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/circle-with-cross.svg b/_includes/entypo/circle-with-cross.svg new file mode 100644 index 0000000..c8711a9 --- /dev/null +++ b/_includes/entypo/circle-with-cross.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/circle-with-minus.svg b/_includes/entypo/circle-with-minus.svg new file mode 100644 index 0000000..12a01a7 --- /dev/null +++ b/_includes/entypo/circle-with-minus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/circle-with-plus.svg b/_includes/entypo/circle-with-plus.svg new file mode 100644 index 0000000..3cd0063 --- /dev/null +++ b/_includes/entypo/circle-with-plus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/circle.svg b/_includes/entypo/circle.svg new file mode 100644 index 0000000..3178607 --- /dev/null +++ b/_includes/entypo/circle.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/circular-graph.svg b/_includes/entypo/circular-graph.svg new file mode 100644 index 0000000..cfc82de --- /dev/null +++ b/_includes/entypo/circular-graph.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/clapperboard.svg b/_includes/entypo/clapperboard.svg new file mode 100644 index 0000000..5b1af96 --- /dev/null +++ b/_includes/entypo/clapperboard.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/classic-computer.svg b/_includes/entypo/classic-computer.svg new file mode 100644 index 0000000..35e6a73 --- /dev/null +++ b/_includes/entypo/classic-computer.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/clipboard.svg b/_includes/entypo/clipboard.svg new file mode 100644 index 0000000..8b11738 --- /dev/null +++ b/_includes/entypo/clipboard.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/clock.svg b/_includes/entypo/clock.svg new file mode 100644 index 0000000..baa422a --- /dev/null +++ b/_includes/entypo/clock.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/cloud.svg b/_includes/entypo/cloud.svg new file mode 100644 index 0000000..b86261f --- /dev/null +++ b/_includes/entypo/cloud.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/code.svg b/_includes/entypo/code.svg new file mode 100644 index 0000000..a975821 --- /dev/null +++ b/_includes/entypo/code.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/cog.svg b/_includes/entypo/cog.svg new file mode 100644 index 0000000..c2f3580 --- /dev/null +++ b/_includes/entypo/cog.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/colours.svg b/_includes/entypo/colours.svg new file mode 100644 index 0000000..422d71d --- /dev/null +++ b/_includes/entypo/colours.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/compass.svg b/_includes/entypo/compass.svg new file mode 100644 index 0000000..5c3822e --- /dev/null +++ b/_includes/entypo/compass.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/controller-fast-backward.svg b/_includes/entypo/controller-fast-backward.svg new file mode 100644 index 0000000..f9f96d6 --- /dev/null +++ b/_includes/entypo/controller-fast-backward.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/controller-fast-forward.svg b/_includes/entypo/controller-fast-forward.svg new file mode 100644 index 0000000..ef57097 --- /dev/null +++ b/_includes/entypo/controller-fast-forward.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/controller-jump-to-start.svg b/_includes/entypo/controller-jump-to-start.svg new file mode 100644 index 0000000..c62a997 --- /dev/null +++ b/_includes/entypo/controller-jump-to-start.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/controller-next.svg b/_includes/entypo/controller-next.svg new file mode 100644 index 0000000..8ba0c5a --- /dev/null +++ b/_includes/entypo/controller-next.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/controller-paus.svg b/_includes/entypo/controller-paus.svg new file mode 100644 index 0000000..a121eea --- /dev/null +++ b/_includes/entypo/controller-paus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/controller-play.svg b/_includes/entypo/controller-play.svg new file mode 100644 index 0000000..8c90f3d --- /dev/null +++ b/_includes/entypo/controller-play.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/controller-record.svg b/_includes/entypo/controller-record.svg new file mode 100644 index 0000000..dd79514 --- /dev/null +++ b/_includes/entypo/controller-record.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/controller-stop.svg b/_includes/entypo/controller-stop.svg new file mode 100644 index 0000000..449612d --- /dev/null +++ b/_includes/entypo/controller-stop.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/controller-volume.svg b/_includes/entypo/controller-volume.svg new file mode 100644 index 0000000..f418d3e --- /dev/null +++ b/_includes/entypo/controller-volume.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/copy.svg b/_includes/entypo/copy.svg new file mode 100644 index 0000000..2e5c265 --- /dev/null +++ b/_includes/entypo/copy.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/creative-cloud.svg b/_includes/entypo/creative-cloud.svg new file mode 100644 index 0000000..49ce6bb --- /dev/null +++ b/_includes/entypo/creative-cloud.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/creative-commons-attribution.svg b/_includes/entypo/creative-commons-attribution.svg new file mode 100644 index 0000000..bde5ca1 --- /dev/null +++ b/_includes/entypo/creative-commons-attribution.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/_includes/entypo/creative-commons-noderivs.svg b/_includes/entypo/creative-commons-noderivs.svg new file mode 100644 index 0000000..f3efbde --- /dev/null +++ b/_includes/entypo/creative-commons-noderivs.svg @@ -0,0 +1,9 @@ + + + + + diff --git a/_includes/entypo/creative-commons-noncommercial-eu.svg b/_includes/entypo/creative-commons-noncommercial-eu.svg new file mode 100644 index 0000000..916c831 --- /dev/null +++ b/_includes/entypo/creative-commons-noncommercial-eu.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/_includes/entypo/creative-commons-noncommercial-us.svg b/_includes/entypo/creative-commons-noncommercial-us.svg new file mode 100644 index 0000000..458f663 --- /dev/null +++ b/_includes/entypo/creative-commons-noncommercial-us.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/_includes/entypo/creative-commons-public-domain.svg b/_includes/entypo/creative-commons-public-domain.svg new file mode 100644 index 0000000..edbfee1 --- /dev/null +++ b/_includes/entypo/creative-commons-public-domain.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/_includes/entypo/creative-commons-remix.svg b/_includes/entypo/creative-commons-remix.svg new file mode 100644 index 0000000..9431298 --- /dev/null +++ b/_includes/entypo/creative-commons-remix.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/_includes/entypo/creative-commons-share.svg b/_includes/entypo/creative-commons-share.svg new file mode 100644 index 0000000..1b0f956 --- /dev/null +++ b/_includes/entypo/creative-commons-share.svg @@ -0,0 +1,12 @@ + + + + + diff --git a/_includes/entypo/creative-commons-sharealike.svg b/_includes/entypo/creative-commons-sharealike.svg new file mode 100644 index 0000000..5478de4 --- /dev/null +++ b/_includes/entypo/creative-commons-sharealike.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/_includes/entypo/creative-commons.svg b/_includes/entypo/creative-commons.svg new file mode 100644 index 0000000..3e04ed1 --- /dev/null +++ b/_includes/entypo/creative-commons.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/_includes/entypo/credit-card.svg b/_includes/entypo/credit-card.svg new file mode 100644 index 0000000..13003c6 --- /dev/null +++ b/_includes/entypo/credit-card.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/credit.svg b/_includes/entypo/credit.svg new file mode 100644 index 0000000..6191d94 --- /dev/null +++ b/_includes/entypo/credit.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/crop.svg b/_includes/entypo/crop.svg new file mode 100644 index 0000000..27f838a --- /dev/null +++ b/_includes/entypo/crop.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/cross.svg b/_includes/entypo/cross.svg new file mode 100644 index 0000000..4c0cdb6 --- /dev/null +++ b/_includes/entypo/cross.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/cup.svg b/_includes/entypo/cup.svg new file mode 100644 index 0000000..cd175c1 --- /dev/null +++ b/_includes/entypo/cup.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/cw.svg b/_includes/entypo/cw.svg new file mode 100644 index 0000000..eff4ba6 --- /dev/null +++ b/_includes/entypo/cw.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/cycle.svg b/_includes/entypo/cycle.svg new file mode 100644 index 0000000..5f13760 --- /dev/null +++ b/_includes/entypo/cycle.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/database.svg b/_includes/entypo/database.svg new file mode 100644 index 0000000..6e55ebc --- /dev/null +++ b/_includes/entypo/database.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/dial-pad.svg b/_includes/entypo/dial-pad.svg new file mode 100644 index 0000000..3590ad2 --- /dev/null +++ b/_includes/entypo/dial-pad.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/direction.svg b/_includes/entypo/direction.svg new file mode 100644 index 0000000..70148aa --- /dev/null +++ b/_includes/entypo/direction.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/document-landscape.svg b/_includes/entypo/document-landscape.svg new file mode 100644 index 0000000..4c3b8a4 --- /dev/null +++ b/_includes/entypo/document-landscape.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/document.svg b/_includes/entypo/document.svg new file mode 100644 index 0000000..47879ac --- /dev/null +++ b/_includes/entypo/document.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/documents.svg b/_includes/entypo/documents.svg new file mode 100644 index 0000000..4388e70 --- /dev/null +++ b/_includes/entypo/documents.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/dot-single.svg b/_includes/entypo/dot-single.svg new file mode 100644 index 0000000..14511e3 --- /dev/null +++ b/_includes/entypo/dot-single.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/dots-three-horizontal.svg b/_includes/entypo/dots-three-horizontal.svg new file mode 100644 index 0000000..cc280a5 --- /dev/null +++ b/_includes/entypo/dots-three-horizontal.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/dots-three-vertical.svg b/_includes/entypo/dots-three-vertical.svg new file mode 100644 index 0000000..701e151 --- /dev/null +++ b/_includes/entypo/dots-three-vertical.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/dots-two-horizontal.svg b/_includes/entypo/dots-two-horizontal.svg new file mode 100644 index 0000000..61d173f --- /dev/null +++ b/_includes/entypo/dots-two-horizontal.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/dots-two-vertical.svg b/_includes/entypo/dots-two-vertical.svg new file mode 100644 index 0000000..dbe3ea0 --- /dev/null +++ b/_includes/entypo/dots-two-vertical.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/download.svg b/_includes/entypo/download.svg new file mode 100644 index 0000000..8fb1e44 --- /dev/null +++ b/_includes/entypo/download.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/dribbble-with-circle.svg b/_includes/entypo/dribbble-with-circle.svg new file mode 100644 index 0000000..a1721d8 --- /dev/null +++ b/_includes/entypo/dribbble-with-circle.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/dribbble.svg b/_includes/entypo/dribbble.svg new file mode 100644 index 0000000..1fedbb7 --- /dev/null +++ b/_includes/entypo/dribbble.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/drink.svg b/_includes/entypo/drink.svg new file mode 100644 index 0000000..4c404dd --- /dev/null +++ b/_includes/entypo/drink.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/drive.svg b/_includes/entypo/drive.svg new file mode 100644 index 0000000..723d745 --- /dev/null +++ b/_includes/entypo/drive.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/drop.svg b/_includes/entypo/drop.svg new file mode 100644 index 0000000..85acf1d --- /dev/null +++ b/_includes/entypo/drop.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/dropbox.svg b/_includes/entypo/dropbox.svg new file mode 100644 index 0000000..018e22f --- /dev/null +++ b/_includes/entypo/dropbox.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/edit.svg b/_includes/entypo/edit.svg new file mode 100644 index 0000000..910f2a2 --- /dev/null +++ b/_includes/entypo/edit.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/email.svg b/_includes/entypo/email.svg new file mode 100644 index 0000000..4496b07 --- /dev/null +++ b/_includes/entypo/email.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/emoji-flirt.svg b/_includes/entypo/emoji-flirt.svg new file mode 100644 index 0000000..8eab853 --- /dev/null +++ b/_includes/entypo/emoji-flirt.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/_includes/entypo/emoji-happy.svg b/_includes/entypo/emoji-happy.svg new file mode 100644 index 0000000..b0e3fba --- /dev/null +++ b/_includes/entypo/emoji-happy.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/emoji-neutral.svg b/_includes/entypo/emoji-neutral.svg new file mode 100644 index 0000000..a9e2e03 --- /dev/null +++ b/_includes/entypo/emoji-neutral.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/emoji-sad.svg b/_includes/entypo/emoji-sad.svg new file mode 100644 index 0000000..46b34c8 --- /dev/null +++ b/_includes/entypo/emoji-sad.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/erase.svg b/_includes/entypo/erase.svg new file mode 100644 index 0000000..e5869fa --- /dev/null +++ b/_includes/entypo/erase.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/eraser.svg b/_includes/entypo/eraser.svg new file mode 100644 index 0000000..9043e6d --- /dev/null +++ b/_includes/entypo/eraser.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/evernote.svg b/_includes/entypo/evernote.svg new file mode 100644 index 0000000..5663a02 --- /dev/null +++ b/_includes/entypo/evernote.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/_includes/entypo/export.svg b/_includes/entypo/export.svg new file mode 100644 index 0000000..54ff203 --- /dev/null +++ b/_includes/entypo/export.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/eye-with-line.svg b/_includes/entypo/eye-with-line.svg new file mode 100644 index 0000000..b501e3e --- /dev/null +++ b/_includes/entypo/eye-with-line.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/eye.svg b/_includes/entypo/eye.svg new file mode 100644 index 0000000..9ac8c4c --- /dev/null +++ b/_includes/entypo/eye.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/facebook-with-circle.svg b/_includes/entypo/facebook-with-circle.svg new file mode 100644 index 0000000..61312d6 --- /dev/null +++ b/_includes/entypo/facebook-with-circle.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/facebook.svg b/_includes/entypo/facebook.svg new file mode 100644 index 0000000..657747d --- /dev/null +++ b/_includes/entypo/facebook.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/feather.svg b/_includes/entypo/feather.svg new file mode 100644 index 0000000..9c417e2 --- /dev/null +++ b/_includes/entypo/feather.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/fingerprint.svg b/_includes/entypo/fingerprint.svg new file mode 100644 index 0000000..346f4a7 --- /dev/null +++ b/_includes/entypo/fingerprint.svg @@ -0,0 +1,55 @@ + + + + + + diff --git a/_includes/entypo/flag.svg b/_includes/entypo/flag.svg new file mode 100644 index 0000000..a060e33 --- /dev/null +++ b/_includes/entypo/flag.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/flash.svg b/_includes/entypo/flash.svg new file mode 100644 index 0000000..f8c74da --- /dev/null +++ b/_includes/entypo/flash.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/flashlight.svg b/_includes/entypo/flashlight.svg new file mode 100644 index 0000000..6f00139 --- /dev/null +++ b/_includes/entypo/flashlight.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/flat-brush.svg b/_includes/entypo/flat-brush.svg new file mode 100644 index 0000000..9384ebf --- /dev/null +++ b/_includes/entypo/flat-brush.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/flattr.svg b/_includes/entypo/flattr.svg new file mode 100644 index 0000000..3580f60 --- /dev/null +++ b/_includes/entypo/flattr.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/flickr-with-circle.svg b/_includes/entypo/flickr-with-circle.svg new file mode 100644 index 0000000..b81ad3a --- /dev/null +++ b/_includes/entypo/flickr-with-circle.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/flickr.svg b/_includes/entypo/flickr.svg new file mode 100644 index 0000000..414132a --- /dev/null +++ b/_includes/entypo/flickr.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/_includes/entypo/flow-branch.svg b/_includes/entypo/flow-branch.svg new file mode 100644 index 0000000..f1f9fa4 --- /dev/null +++ b/_includes/entypo/flow-branch.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/flow-cascade.svg b/_includes/entypo/flow-cascade.svg new file mode 100644 index 0000000..5e1d469 --- /dev/null +++ b/_includes/entypo/flow-cascade.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/flow-line.svg b/_includes/entypo/flow-line.svg new file mode 100644 index 0000000..c0e2deb --- /dev/null +++ b/_includes/entypo/flow-line.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/flow-parallel.svg b/_includes/entypo/flow-parallel.svg new file mode 100644 index 0000000..ebbc397 --- /dev/null +++ b/_includes/entypo/flow-parallel.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/flow-tree.svg b/_includes/entypo/flow-tree.svg new file mode 100644 index 0000000..5f5bd4a --- /dev/null +++ b/_includes/entypo/flow-tree.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/flower.svg b/_includes/entypo/flower.svg new file mode 100644 index 0000000..c3f5c10 --- /dev/null +++ b/_includes/entypo/flower.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/folder-images.svg b/_includes/entypo/folder-images.svg new file mode 100644 index 0000000..884946a --- /dev/null +++ b/_includes/entypo/folder-images.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/folder-music.svg b/_includes/entypo/folder-music.svg new file mode 100644 index 0000000..8692fab --- /dev/null +++ b/_includes/entypo/folder-music.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/folder-video.svg b/_includes/entypo/folder-video.svg new file mode 100644 index 0000000..07bf455 --- /dev/null +++ b/_includes/entypo/folder-video.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/folder.svg b/_includes/entypo/folder.svg new file mode 100644 index 0000000..1336e59 --- /dev/null +++ b/_includes/entypo/folder.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/forward.svg b/_includes/entypo/forward.svg new file mode 100644 index 0000000..baaf707 --- /dev/null +++ b/_includes/entypo/forward.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/foursquare.svg b/_includes/entypo/foursquare.svg new file mode 100644 index 0000000..4035d6d --- /dev/null +++ b/_includes/entypo/foursquare.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/funnel.svg b/_includes/entypo/funnel.svg new file mode 100644 index 0000000..02bc1c7 --- /dev/null +++ b/_includes/entypo/funnel.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/game-controller.svg b/_includes/entypo/game-controller.svg new file mode 100644 index 0000000..ea03703 --- /dev/null +++ b/_includes/entypo/game-controller.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/gauge.svg b/_includes/entypo/gauge.svg new file mode 100644 index 0000000..06d1ab5 --- /dev/null +++ b/_includes/entypo/gauge.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/github-with-circle.svg b/_includes/entypo/github-with-circle.svg new file mode 100644 index 0000000..40f6ef1 --- /dev/null +++ b/_includes/entypo/github-with-circle.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/github.svg b/_includes/entypo/github.svg new file mode 100644 index 0000000..24e7b69 --- /dev/null +++ b/_includes/entypo/github.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/globe.svg b/_includes/entypo/globe.svg new file mode 100644 index 0000000..5d893b7 --- /dev/null +++ b/_includes/entypo/globe.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/google+-with-circle.svg b/_includes/entypo/google+-with-circle.svg new file mode 100644 index 0000000..94196a5 --- /dev/null +++ b/_includes/entypo/google+-with-circle.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/google+.svg b/_includes/entypo/google+.svg new file mode 100644 index 0000000..fa06aa1 --- /dev/null +++ b/_includes/entypo/google+.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/_includes/entypo/google-drive.svg b/_includes/entypo/google-drive.svg new file mode 100644 index 0000000..1303089 --- /dev/null +++ b/_includes/entypo/google-drive.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/google-hangouts.svg b/_includes/entypo/google-hangouts.svg new file mode 100644 index 0000000..ae0f2a4 --- /dev/null +++ b/_includes/entypo/google-hangouts.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/google-play.svg b/_includes/entypo/google-play.svg new file mode 100644 index 0000000..68e3f81 --- /dev/null +++ b/_includes/entypo/google-play.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/graduation-cap.svg b/_includes/entypo/graduation-cap.svg new file mode 100644 index 0000000..4665684 --- /dev/null +++ b/_includes/entypo/graduation-cap.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/grid.svg b/_includes/entypo/grid.svg new file mode 100644 index 0000000..44494ea --- /dev/null +++ b/_includes/entypo/grid.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/grooveshark.svg b/_includes/entypo/grooveshark.svg new file mode 100644 index 0000000..ea2dcdf --- /dev/null +++ b/_includes/entypo/grooveshark.svg @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/_includes/entypo/hair-cross.svg b/_includes/entypo/hair-cross.svg new file mode 100644 index 0000000..498052e --- /dev/null +++ b/_includes/entypo/hair-cross.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/hand.svg b/_includes/entypo/hand.svg new file mode 100644 index 0000000..df8b4d2 --- /dev/null +++ b/_includes/entypo/hand.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/heart-outlined.svg b/_includes/entypo/heart-outlined.svg new file mode 100644 index 0000000..07a5987 --- /dev/null +++ b/_includes/entypo/heart-outlined.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/heart.svg b/_includes/entypo/heart.svg new file mode 100644 index 0000000..567172a --- /dev/null +++ b/_includes/entypo/heart.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/help-with-circle.svg b/_includes/entypo/help-with-circle.svg new file mode 100644 index 0000000..a3b2e2d --- /dev/null +++ b/_includes/entypo/help-with-circle.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/help.svg b/_includes/entypo/help.svg new file mode 100644 index 0000000..419c59e --- /dev/null +++ b/_includes/entypo/help.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/_includes/entypo/home.svg b/_includes/entypo/home.svg new file mode 100644 index 0000000..179fba9 --- /dev/null +++ b/_includes/entypo/home.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/hour-glass.svg b/_includes/entypo/hour-glass.svg new file mode 100644 index 0000000..a669b3e --- /dev/null +++ b/_includes/entypo/hour-glass.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/houzz.svg b/_includes/entypo/houzz.svg new file mode 100644 index 0000000..b7eb866 --- /dev/null +++ b/_includes/entypo/houzz.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/icloud.svg b/_includes/entypo/icloud.svg new file mode 100644 index 0000000..10f8c77 --- /dev/null +++ b/_includes/entypo/icloud.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/image-inverted.svg b/_includes/entypo/image-inverted.svg new file mode 100644 index 0000000..b8beda3 --- /dev/null +++ b/_includes/entypo/image-inverted.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/image.svg b/_includes/entypo/image.svg new file mode 100644 index 0000000..b101c6f --- /dev/null +++ b/_includes/entypo/image.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/images.svg b/_includes/entypo/images.svg new file mode 100644 index 0000000..7acd6c4 --- /dev/null +++ b/_includes/entypo/images.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/inbox.svg b/_includes/entypo/inbox.svg new file mode 100644 index 0000000..e67a756 --- /dev/null +++ b/_includes/entypo/inbox.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/infinity.svg b/_includes/entypo/infinity.svg new file mode 100644 index 0000000..891331f --- /dev/null +++ b/_includes/entypo/infinity.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/info-with-circle.svg b/_includes/entypo/info-with-circle.svg new file mode 100644 index 0000000..e8ea220 --- /dev/null +++ b/_includes/entypo/info-with-circle.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/info.svg b/_includes/entypo/info.svg new file mode 100644 index 0000000..f00ba4e --- /dev/null +++ b/_includes/entypo/info.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/instagram-with-circle.svg b/_includes/entypo/instagram-with-circle.svg new file mode 100644 index 0000000..ea91ef3 --- /dev/null +++ b/_includes/entypo/instagram-with-circle.svg @@ -0,0 +1 @@ +instagram-with-circle \ No newline at end of file diff --git a/_includes/entypo/instagram.svg b/_includes/entypo/instagram.svg new file mode 100644 index 0000000..91f2ad7 --- /dev/null +++ b/_includes/entypo/instagram.svg @@ -0,0 +1 @@ +instagram \ No newline at end of file diff --git a/_includes/entypo/install.svg b/_includes/entypo/install.svg new file mode 100644 index 0000000..034f035 --- /dev/null +++ b/_includes/entypo/install.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/key.svg b/_includes/entypo/key.svg new file mode 100644 index 0000000..fbbac7e --- /dev/null +++ b/_includes/entypo/key.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/keyboard.svg b/_includes/entypo/keyboard.svg new file mode 100644 index 0000000..fcb96b7 --- /dev/null +++ b/_includes/entypo/keyboard.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/lab-flask.svg b/_includes/entypo/lab-flask.svg new file mode 100644 index 0000000..1378bff --- /dev/null +++ b/_includes/entypo/lab-flask.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/landline.svg b/_includes/entypo/landline.svg new file mode 100644 index 0000000..33a27b3 --- /dev/null +++ b/_includes/entypo/landline.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/language.svg b/_includes/entypo/language.svg new file mode 100644 index 0000000..c5db8a5 --- /dev/null +++ b/_includes/entypo/language.svg @@ -0,0 +1,22 @@ + + + + + + diff --git a/_includes/entypo/laptop.svg b/_includes/entypo/laptop.svg new file mode 100644 index 0000000..cbfe32a --- /dev/null +++ b/_includes/entypo/laptop.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/lastfm-with-circle.svg b/_includes/entypo/lastfm-with-circle.svg new file mode 100644 index 0000000..7804300 --- /dev/null +++ b/_includes/entypo/lastfm-with-circle.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/lastfm.svg b/_includes/entypo/lastfm.svg new file mode 100644 index 0000000..cef1b74 --- /dev/null +++ b/_includes/entypo/lastfm.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/layers.svg b/_includes/entypo/layers.svg new file mode 100644 index 0000000..5da4f7c --- /dev/null +++ b/_includes/entypo/layers.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/leaf.svg b/_includes/entypo/leaf.svg new file mode 100644 index 0000000..d909b16 --- /dev/null +++ b/_includes/entypo/leaf.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/level-down.svg b/_includes/entypo/level-down.svg new file mode 100644 index 0000000..34cbcd9 --- /dev/null +++ b/_includes/entypo/level-down.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/level-up.svg b/_includes/entypo/level-up.svg new file mode 100644 index 0000000..6d59cf2 --- /dev/null +++ b/_includes/entypo/level-up.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/lifebuoy.svg b/_includes/entypo/lifebuoy.svg new file mode 100644 index 0000000..aef836b --- /dev/null +++ b/_includes/entypo/lifebuoy.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/light-bulb.svg b/_includes/entypo/light-bulb.svg new file mode 100644 index 0000000..6370d20 --- /dev/null +++ b/_includes/entypo/light-bulb.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/light-down.svg b/_includes/entypo/light-down.svg new file mode 100644 index 0000000..c415736 --- /dev/null +++ b/_includes/entypo/light-down.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/light-up.svg b/_includes/entypo/light-up.svg new file mode 100644 index 0000000..d743ac7 --- /dev/null +++ b/_includes/entypo/light-up.svg @@ -0,0 +1,21 @@ + + + + + + diff --git a/_includes/entypo/line-graph.svg b/_includes/entypo/line-graph.svg new file mode 100644 index 0000000..2dcae36 --- /dev/null +++ b/_includes/entypo/line-graph.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/link.svg b/_includes/entypo/link.svg new file mode 100644 index 0000000..473d7d3 --- /dev/null +++ b/_includes/entypo/link.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/linkedin-with-circle.svg b/_includes/entypo/linkedin-with-circle.svg new file mode 100644 index 0000000..faabed2 --- /dev/null +++ b/_includes/entypo/linkedin-with-circle.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/linkedin.svg b/_includes/entypo/linkedin.svg new file mode 100644 index 0000000..e9e1ec4 --- /dev/null +++ b/_includes/entypo/linkedin.svg @@ -0,0 +1,8 @@ + + + + + diff --git a/_includes/entypo/list.svg b/_includes/entypo/list.svg new file mode 100644 index 0000000..00a4955 --- /dev/null +++ b/_includes/entypo/list.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/location-pin.svg b/_includes/entypo/location-pin.svg new file mode 100644 index 0000000..467920f --- /dev/null +++ b/_includes/entypo/location-pin.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/location.svg b/_includes/entypo/location.svg new file mode 100644 index 0000000..227f1f7 --- /dev/null +++ b/_includes/entypo/location.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/lock-open.svg b/_includes/entypo/lock-open.svg new file mode 100644 index 0000000..50a0ebb --- /dev/null +++ b/_includes/entypo/lock-open.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/lock.svg b/_includes/entypo/lock.svg new file mode 100644 index 0000000..e550abb --- /dev/null +++ b/_includes/entypo/lock.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/log-out.svg b/_includes/entypo/log-out.svg new file mode 100644 index 0000000..3862c1d --- /dev/null +++ b/_includes/entypo/log-out.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/login.svg b/_includes/entypo/login.svg new file mode 100644 index 0000000..c902445 --- /dev/null +++ b/_includes/entypo/login.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/loop.svg b/_includes/entypo/loop.svg new file mode 100644 index 0000000..1b76c9a --- /dev/null +++ b/_includes/entypo/loop.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/magnet.svg b/_includes/entypo/magnet.svg new file mode 100644 index 0000000..e07f055 --- /dev/null +++ b/_includes/entypo/magnet.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/magnifying-glass.svg b/_includes/entypo/magnifying-glass.svg new file mode 100644 index 0000000..84995d5 --- /dev/null +++ b/_includes/entypo/magnifying-glass.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/mail-with-circle.svg b/_includes/entypo/mail-with-circle.svg new file mode 100644 index 0000000..87eb23b --- /dev/null +++ b/_includes/entypo/mail-with-circle.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/_includes/entypo/mail.svg b/_includes/entypo/mail.svg new file mode 100644 index 0000000..670dcee --- /dev/null +++ b/_includes/entypo/mail.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/man.svg b/_includes/entypo/man.svg new file mode 100644 index 0000000..2303a98 --- /dev/null +++ b/_includes/entypo/man.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/map.svg b/_includes/entypo/map.svg new file mode 100644 index 0000000..017183b --- /dev/null +++ b/_includes/entypo/map.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/mask.svg b/_includes/entypo/mask.svg new file mode 100644 index 0000000..08165d4 --- /dev/null +++ b/_includes/entypo/mask.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/medal.svg b/_includes/entypo/medal.svg new file mode 100644 index 0000000..1e9db9f --- /dev/null +++ b/_includes/entypo/medal.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/_includes/entypo/medium-with-circle.svg b/_includes/entypo/medium-with-circle.svg new file mode 100644 index 0000000..b8d74b0 --- /dev/null +++ b/_includes/entypo/medium-with-circle.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/medium.svg b/_includes/entypo/medium.svg new file mode 100644 index 0000000..4442f84 --- /dev/null +++ b/_includes/entypo/medium.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/megaphone.svg b/_includes/entypo/megaphone.svg new file mode 100644 index 0000000..105dc89 --- /dev/null +++ b/_includes/entypo/megaphone.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/menu.svg b/_includes/entypo/menu.svg new file mode 100644 index 0000000..977c97a --- /dev/null +++ b/_includes/entypo/menu.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/merge.svg b/_includes/entypo/merge.svg new file mode 100644 index 0000000..ff9be37 --- /dev/null +++ b/_includes/entypo/merge.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/message.svg b/_includes/entypo/message.svg new file mode 100644 index 0000000..d10db8e --- /dev/null +++ b/_includes/entypo/message.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/mic.svg b/_includes/entypo/mic.svg new file mode 100644 index 0000000..d5b557c --- /dev/null +++ b/_includes/entypo/mic.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/minus.svg b/_includes/entypo/minus.svg new file mode 100644 index 0000000..3acf133 --- /dev/null +++ b/_includes/entypo/minus.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/mixi.svg b/_includes/entypo/mixi.svg new file mode 100644 index 0000000..f080409 --- /dev/null +++ b/_includes/entypo/mixi.svg @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/_includes/entypo/mobile.svg b/_includes/entypo/mobile.svg new file mode 100644 index 0000000..ee9b776 --- /dev/null +++ b/_includes/entypo/mobile.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/modern-mic.svg b/_includes/entypo/modern-mic.svg new file mode 100644 index 0000000..e754308 --- /dev/null +++ b/_includes/entypo/modern-mic.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/moon.svg b/_includes/entypo/moon.svg new file mode 100644 index 0000000..061acb7 --- /dev/null +++ b/_includes/entypo/moon.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/mouse-pointer.svg b/_includes/entypo/mouse-pointer.svg new file mode 100644 index 0000000..f5f4fde --- /dev/null +++ b/_includes/entypo/mouse-pointer.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/mouse.svg b/_includes/entypo/mouse.svg new file mode 100644 index 0000000..8f6d213 --- /dev/null +++ b/_includes/entypo/mouse.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/music.svg b/_includes/entypo/music.svg new file mode 100644 index 0000000..2790fde --- /dev/null +++ b/_includes/entypo/music.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/network.svg b/_includes/entypo/network.svg new file mode 100644 index 0000000..17a224c --- /dev/null +++ b/_includes/entypo/network.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/_includes/entypo/new-message.svg b/_includes/entypo/new-message.svg new file mode 100644 index 0000000..3559ada --- /dev/null +++ b/_includes/entypo/new-message.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/new.svg b/_includes/entypo/new.svg new file mode 100644 index 0000000..2e81d84 --- /dev/null +++ b/_includes/entypo/new.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/news.svg b/_includes/entypo/news.svg new file mode 100644 index 0000000..0933a11 --- /dev/null +++ b/_includes/entypo/news.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/newsletter.svg b/_includes/entypo/newsletter.svg new file mode 100644 index 0000000..d58e221 --- /dev/null +++ b/_includes/entypo/newsletter.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/note.svg b/_includes/entypo/note.svg new file mode 100644 index 0000000..42a52aa --- /dev/null +++ b/_includes/entypo/note.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/notification.svg b/_includes/entypo/notification.svg new file mode 100644 index 0000000..29163f2 --- /dev/null +++ b/_includes/entypo/notification.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/notifications-off.svg b/_includes/entypo/notifications-off.svg new file mode 100644 index 0000000..ea9829f --- /dev/null +++ b/_includes/entypo/notifications-off.svg @@ -0,0 +1,9 @@ + + + + + diff --git a/_includes/entypo/old-mobile.svg b/_includes/entypo/old-mobile.svg new file mode 100644 index 0000000..6e72bf9 --- /dev/null +++ b/_includes/entypo/old-mobile.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/old-phone.svg b/_includes/entypo/old-phone.svg new file mode 100644 index 0000000..55c2338 --- /dev/null +++ b/_includes/entypo/old-phone.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/onedrive.svg b/_includes/entypo/onedrive.svg new file mode 100644 index 0000000..5b7d1db --- /dev/null +++ b/_includes/entypo/onedrive.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/open-book.svg b/_includes/entypo/open-book.svg new file mode 100644 index 0000000..56840d1 --- /dev/null +++ b/_includes/entypo/open-book.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/_includes/entypo/palette.svg b/_includes/entypo/palette.svg new file mode 100644 index 0000000..6710091 --- /dev/null +++ b/_includes/entypo/palette.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/paper-plane.svg b/_includes/entypo/paper-plane.svg new file mode 100644 index 0000000..a3a49ff --- /dev/null +++ b/_includes/entypo/paper-plane.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/paypal.svg b/_includes/entypo/paypal.svg new file mode 100644 index 0000000..52cd918 --- /dev/null +++ b/_includes/entypo/paypal.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/pencil.svg b/_includes/entypo/pencil.svg new file mode 100644 index 0000000..4f58c31 --- /dev/null +++ b/_includes/entypo/pencil.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/phone.svg b/_includes/entypo/phone.svg new file mode 100644 index 0000000..01b253e --- /dev/null +++ b/_includes/entypo/phone.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/picasa.svg b/_includes/entypo/picasa.svg new file mode 100644 index 0000000..ea21340 --- /dev/null +++ b/_includes/entypo/picasa.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/pie-chart.svg b/_includes/entypo/pie-chart.svg new file mode 100644 index 0000000..dfe81d9 --- /dev/null +++ b/_includes/entypo/pie-chart.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/pin.svg b/_includes/entypo/pin.svg new file mode 100644 index 0000000..0a5e37c --- /dev/null +++ b/_includes/entypo/pin.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/pinterest-with-circle.svg b/_includes/entypo/pinterest-with-circle.svg new file mode 100644 index 0000000..0ecd6b6 --- /dev/null +++ b/_includes/entypo/pinterest-with-circle.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/pinterest.svg b/_includes/entypo/pinterest.svg new file mode 100644 index 0000000..94b8391 --- /dev/null +++ b/_includes/entypo/pinterest.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/plus.svg b/_includes/entypo/plus.svg new file mode 100644 index 0000000..5d049ad --- /dev/null +++ b/_includes/entypo/plus.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/popup.svg b/_includes/entypo/popup.svg new file mode 100644 index 0000000..b8fd4bf --- /dev/null +++ b/_includes/entypo/popup.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/power-plug.svg b/_includes/entypo/power-plug.svg new file mode 100644 index 0000000..723e8ff --- /dev/null +++ b/_includes/entypo/power-plug.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/price-ribbon.svg b/_includes/entypo/price-ribbon.svg new file mode 100644 index 0000000..b36e214 --- /dev/null +++ b/_includes/entypo/price-ribbon.svg @@ -0,0 +1,22 @@ + + + + + + diff --git a/_includes/entypo/price-tag.svg b/_includes/entypo/price-tag.svg new file mode 100644 index 0000000..3e5b0e3 --- /dev/null +++ b/_includes/entypo/price-tag.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/_includes/entypo/print.svg b/_includes/entypo/print.svg new file mode 100644 index 0000000..71da73a --- /dev/null +++ b/_includes/entypo/print.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/progress-empty.svg b/_includes/entypo/progress-empty.svg new file mode 100644 index 0000000..ca5c747 --- /dev/null +++ b/_includes/entypo/progress-empty.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/progress-full.svg b/_includes/entypo/progress-full.svg new file mode 100644 index 0000000..2b5ebea --- /dev/null +++ b/_includes/entypo/progress-full.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/progress-one.svg b/_includes/entypo/progress-one.svg new file mode 100644 index 0000000..139dca4 --- /dev/null +++ b/_includes/entypo/progress-one.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/progress-two.svg b/_includes/entypo/progress-two.svg new file mode 100644 index 0000000..2c7d562 --- /dev/null +++ b/_includes/entypo/progress-two.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/publish.svg b/_includes/entypo/publish.svg new file mode 100644 index 0000000..86a1eb3 --- /dev/null +++ b/_includes/entypo/publish.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/qq-with-circle.svg b/_includes/entypo/qq-with-circle.svg new file mode 100644 index 0000000..271526b --- /dev/null +++ b/_includes/entypo/qq-with-circle.svg @@ -0,0 +1,21 @@ + + + + + + diff --git a/_includes/entypo/qq.svg b/_includes/entypo/qq.svg new file mode 100644 index 0000000..4c513fa --- /dev/null +++ b/_includes/entypo/qq.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/_includes/entypo/quote.svg b/_includes/entypo/quote.svg new file mode 100644 index 0000000..1e80c03 --- /dev/null +++ b/_includes/entypo/quote.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/radio.svg b/_includes/entypo/radio.svg new file mode 100644 index 0000000..eb058be --- /dev/null +++ b/_includes/entypo/radio.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/raft-with-circle.svg b/_includes/entypo/raft-with-circle.svg new file mode 100644 index 0000000..99432b0 --- /dev/null +++ b/_includes/entypo/raft-with-circle.svg @@ -0,0 +1,27 @@ + + + + + + diff --git a/_includes/entypo/raft.svg b/_includes/entypo/raft.svg new file mode 100644 index 0000000..a52671d --- /dev/null +++ b/_includes/entypo/raft.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/_includes/entypo/rainbow.svg b/_includes/entypo/rainbow.svg new file mode 100644 index 0000000..1ef6766 --- /dev/null +++ b/_includes/entypo/rainbow.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/rdio-with-circle.svg b/_includes/entypo/rdio-with-circle.svg new file mode 100644 index 0000000..55ee126 --- /dev/null +++ b/_includes/entypo/rdio-with-circle.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/rdio.svg b/_includes/entypo/rdio.svg new file mode 100644 index 0000000..584f5be --- /dev/null +++ b/_includes/entypo/rdio.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/remove-user.svg b/_includes/entypo/remove-user.svg new file mode 100644 index 0000000..f8829c2 --- /dev/null +++ b/_includes/entypo/remove-user.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/renren.svg b/_includes/entypo/renren.svg new file mode 100644 index 0000000..340ea51 --- /dev/null +++ b/_includes/entypo/renren.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/reply-all.svg b/_includes/entypo/reply-all.svg new file mode 100644 index 0000000..fa4158c --- /dev/null +++ b/_includes/entypo/reply-all.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/reply.svg b/_includes/entypo/reply.svg new file mode 100644 index 0000000..e51f926 --- /dev/null +++ b/_includes/entypo/reply.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/resize-100%.svg b/_includes/entypo/resize-100%.svg new file mode 100644 index 0000000..817cf33 --- /dev/null +++ b/_includes/entypo/resize-100%.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/resize-full-screen.svg b/_includes/entypo/resize-full-screen.svg new file mode 100644 index 0000000..5fb8016 --- /dev/null +++ b/_includes/entypo/resize-full-screen.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/retweet.svg b/_includes/entypo/retweet.svg new file mode 100644 index 0000000..78a116b --- /dev/null +++ b/_includes/entypo/retweet.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/rocket.svg b/_includes/entypo/rocket.svg new file mode 100644 index 0000000..8846068 --- /dev/null +++ b/_includes/entypo/rocket.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/round-brush.svg b/_includes/entypo/round-brush.svg new file mode 100644 index 0000000..9d4aa15 --- /dev/null +++ b/_includes/entypo/round-brush.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/rss.svg b/_includes/entypo/rss.svg new file mode 100644 index 0000000..9a269d6 --- /dev/null +++ b/_includes/entypo/rss.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/ruler.svg b/_includes/entypo/ruler.svg new file mode 100644 index 0000000..0c591d6 --- /dev/null +++ b/_includes/entypo/ruler.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/save.svg b/_includes/entypo/save.svg new file mode 100644 index 0000000..63f0b4b --- /dev/null +++ b/_includes/entypo/save.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/scissors.svg b/_includes/entypo/scissors.svg new file mode 100644 index 0000000..011ac3a --- /dev/null +++ b/_includes/entypo/scissors.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/scribd.svg b/_includes/entypo/scribd.svg new file mode 100644 index 0000000..cb84a9a --- /dev/null +++ b/_includes/entypo/scribd.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/select-arrows.svg b/_includes/entypo/select-arrows.svg new file mode 100644 index 0000000..574d8fc --- /dev/null +++ b/_includes/entypo/select-arrows.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/share-alternative.svg b/_includes/entypo/share-alternative.svg new file mode 100644 index 0000000..4929552 --- /dev/null +++ b/_includes/entypo/share-alternative.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/share.svg b/_includes/entypo/share.svg new file mode 100644 index 0000000..0ef8fd7 --- /dev/null +++ b/_includes/entypo/share.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/shareable.svg b/_includes/entypo/shareable.svg new file mode 100644 index 0000000..78808c6 --- /dev/null +++ b/_includes/entypo/shareable.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/shield.svg b/_includes/entypo/shield.svg new file mode 100644 index 0000000..a4d180a --- /dev/null +++ b/_includes/entypo/shield.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/shop.svg b/_includes/entypo/shop.svg new file mode 100644 index 0000000..a3764be --- /dev/null +++ b/_includes/entypo/shop.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/shopping-bag.svg b/_includes/entypo/shopping-bag.svg new file mode 100644 index 0000000..88d20c5 --- /dev/null +++ b/_includes/entypo/shopping-bag.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/shopping-basket.svg b/_includes/entypo/shopping-basket.svg new file mode 100644 index 0000000..c2ab3e4 --- /dev/null +++ b/_includes/entypo/shopping-basket.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/shopping-cart.svg b/_includes/entypo/shopping-cart.svg new file mode 100644 index 0000000..7f35ee8 --- /dev/null +++ b/_includes/entypo/shopping-cart.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/shuffle.svg b/_includes/entypo/shuffle.svg new file mode 100644 index 0000000..433818e --- /dev/null +++ b/_includes/entypo/shuffle.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/signal.svg b/_includes/entypo/signal.svg new file mode 100644 index 0000000..db361e6 --- /dev/null +++ b/_includes/entypo/signal.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/sina-weibo.svg b/_includes/entypo/sina-weibo.svg new file mode 100644 index 0000000..8e6f26c --- /dev/null +++ b/_includes/entypo/sina-weibo.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/skype-with-circle.svg b/_includes/entypo/skype-with-circle.svg new file mode 100644 index 0000000..0aac118 --- /dev/null +++ b/_includes/entypo/skype-with-circle.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/_includes/entypo/skype.svg b/_includes/entypo/skype.svg new file mode 100644 index 0000000..ef58954 --- /dev/null +++ b/_includes/entypo/skype.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/_includes/entypo/slideshare.svg b/_includes/entypo/slideshare.svg new file mode 100644 index 0000000..833b1da --- /dev/null +++ b/_includes/entypo/slideshare.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/smashing.svg b/_includes/entypo/smashing.svg new file mode 100644 index 0000000..a07f072 --- /dev/null +++ b/_includes/entypo/smashing.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/sound-mix.svg b/_includes/entypo/sound-mix.svg new file mode 100644 index 0000000..0771a48 --- /dev/null +++ b/_includes/entypo/sound-mix.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/sound-mute.svg b/_includes/entypo/sound-mute.svg new file mode 100644 index 0000000..f41b290 --- /dev/null +++ b/_includes/entypo/sound-mute.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/sound.svg b/_includes/entypo/sound.svg new file mode 100644 index 0000000..e48a9a0 --- /dev/null +++ b/_includes/entypo/sound.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/soundcloud.svg b/_includes/entypo/soundcloud.svg new file mode 100644 index 0000000..d82f4bc --- /dev/null +++ b/_includes/entypo/soundcloud.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/sports-club.svg b/_includes/entypo/sports-club.svg new file mode 100644 index 0000000..598604e --- /dev/null +++ b/_includes/entypo/sports-club.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/spotify-with-circle.svg b/_includes/entypo/spotify-with-circle.svg new file mode 100644 index 0000000..032471d --- /dev/null +++ b/_includes/entypo/spotify-with-circle.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/spotify.svg b/_includes/entypo/spotify.svg new file mode 100644 index 0000000..093a1b4 --- /dev/null +++ b/_includes/entypo/spotify.svg @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/_includes/entypo/spreadsheet.svg b/_includes/entypo/spreadsheet.svg new file mode 100644 index 0000000..f86375c --- /dev/null +++ b/_includes/entypo/spreadsheet.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/squared-cross.svg b/_includes/entypo/squared-cross.svg new file mode 100644 index 0000000..6933a01 --- /dev/null +++ b/_includes/entypo/squared-cross.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/squared-minus.svg b/_includes/entypo/squared-minus.svg new file mode 100644 index 0000000..d734e2e --- /dev/null +++ b/_includes/entypo/squared-minus.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/squared-plus.svg b/_includes/entypo/squared-plus.svg new file mode 100644 index 0000000..c105f58 --- /dev/null +++ b/_includes/entypo/squared-plus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/star-outlined.svg b/_includes/entypo/star-outlined.svg new file mode 100644 index 0000000..dc093b6 --- /dev/null +++ b/_includes/entypo/star-outlined.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/star.svg b/_includes/entypo/star.svg new file mode 100644 index 0000000..51b04c1 --- /dev/null +++ b/_includes/entypo/star.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/stopwatch.svg b/_includes/entypo/stopwatch.svg new file mode 100644 index 0000000..ef6bd59 --- /dev/null +++ b/_includes/entypo/stopwatch.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/_includes/entypo/stumbleupon-with-circle.svg b/_includes/entypo/stumbleupon-with-circle.svg new file mode 100644 index 0000000..dde60ce --- /dev/null +++ b/_includes/entypo/stumbleupon-with-circle.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/stumbleupon.svg b/_includes/entypo/stumbleupon.svg new file mode 100644 index 0000000..e48c975 --- /dev/null +++ b/_includes/entypo/stumbleupon.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/suitcase.svg b/_includes/entypo/suitcase.svg new file mode 100644 index 0000000..e80c573 --- /dev/null +++ b/_includes/entypo/suitcase.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/swap.svg b/_includes/entypo/swap.svg new file mode 100644 index 0000000..2df4577 --- /dev/null +++ b/_includes/entypo/swap.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/swarm.svg b/_includes/entypo/swarm.svg new file mode 100644 index 0000000..208cacd --- /dev/null +++ b/_includes/entypo/swarm.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/sweden.svg b/_includes/entypo/sweden.svg new file mode 100644 index 0000000..12da96a --- /dev/null +++ b/_includes/entypo/sweden.svg @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/_includes/entypo/switch.svg b/_includes/entypo/switch.svg new file mode 100644 index 0000000..c3f818b --- /dev/null +++ b/_includes/entypo/switch.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/tablet-mobile-combo.svg b/_includes/entypo/tablet-mobile-combo.svg new file mode 100644 index 0000000..e2cb689 --- /dev/null +++ b/_includes/entypo/tablet-mobile-combo.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/tablet.svg b/_includes/entypo/tablet.svg new file mode 100644 index 0000000..42ab973 --- /dev/null +++ b/_includes/entypo/tablet.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/tag.svg b/_includes/entypo/tag.svg new file mode 100644 index 0000000..2df125f --- /dev/null +++ b/_includes/entypo/tag.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/text-document-inverted.svg b/_includes/entypo/text-document-inverted.svg new file mode 100644 index 0000000..c81dac0 --- /dev/null +++ b/_includes/entypo/text-document-inverted.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/text-document.svg b/_includes/entypo/text-document.svg new file mode 100644 index 0000000..1f9e237 --- /dev/null +++ b/_includes/entypo/text-document.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/text.svg b/_includes/entypo/text.svg new file mode 100644 index 0000000..eb806bd --- /dev/null +++ b/_includes/entypo/text.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/thermometer.svg b/_includes/entypo/thermometer.svg new file mode 100644 index 0000000..da65f26 --- /dev/null +++ b/_includes/entypo/thermometer.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/thumbs-down.svg b/_includes/entypo/thumbs-down.svg new file mode 100644 index 0000000..88cec76 --- /dev/null +++ b/_includes/entypo/thumbs-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/thumbs-up.svg b/_includes/entypo/thumbs-up.svg new file mode 100644 index 0000000..b4a165e --- /dev/null +++ b/_includes/entypo/thumbs-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/thunder-cloud.svg b/_includes/entypo/thunder-cloud.svg new file mode 100644 index 0000000..0dfa972 --- /dev/null +++ b/_includes/entypo/thunder-cloud.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/ticket.svg b/_includes/entypo/ticket.svg new file mode 100644 index 0000000..09e88f7 --- /dev/null +++ b/_includes/entypo/ticket.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/time-slot.svg b/_includes/entypo/time-slot.svg new file mode 100644 index 0000000..4eccc57 --- /dev/null +++ b/_includes/entypo/time-slot.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/tools.svg b/_includes/entypo/tools.svg new file mode 100644 index 0000000..f78337d --- /dev/null +++ b/_includes/entypo/tools.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/traffic-cone.svg b/_includes/entypo/traffic-cone.svg new file mode 100644 index 0000000..2f81db9 --- /dev/null +++ b/_includes/entypo/traffic-cone.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/trash.svg b/_includes/entypo/trash.svg new file mode 100644 index 0000000..1aca32d --- /dev/null +++ b/_includes/entypo/trash.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/tree.svg b/_includes/entypo/tree.svg new file mode 100644 index 0000000..91339c2 --- /dev/null +++ b/_includes/entypo/tree.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/_includes/entypo/triangle-down.svg b/_includes/entypo/triangle-down.svg new file mode 100644 index 0000000..ec741a1 --- /dev/null +++ b/_includes/entypo/triangle-down.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/triangle-left.svg b/_includes/entypo/triangle-left.svg new file mode 100644 index 0000000..91c98fc --- /dev/null +++ b/_includes/entypo/triangle-left.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/triangle-right.svg b/_includes/entypo/triangle-right.svg new file mode 100644 index 0000000..3cc4a66 --- /dev/null +++ b/_includes/entypo/triangle-right.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/triangle-up.svg b/_includes/entypo/triangle-up.svg new file mode 100644 index 0000000..64f6a54 --- /dev/null +++ b/_includes/entypo/triangle-up.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/_includes/entypo/tripadvisor.svg b/_includes/entypo/tripadvisor.svg new file mode 100644 index 0000000..e3cc601 --- /dev/null +++ b/_includes/entypo/tripadvisor.svg @@ -0,0 +1,23 @@ + + + + + + diff --git a/_includes/entypo/trophy.svg b/_includes/entypo/trophy.svg new file mode 100644 index 0000000..c2d5f83 --- /dev/null +++ b/_includes/entypo/trophy.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/_includes/entypo/tumblr-with-circle.svg b/_includes/entypo/tumblr-with-circle.svg new file mode 100644 index 0000000..4cd87e5 --- /dev/null +++ b/_includes/entypo/tumblr-with-circle.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/tumblr.svg b/_includes/entypo/tumblr.svg new file mode 100644 index 0000000..d949aa0 --- /dev/null +++ b/_includes/entypo/tumblr.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/tv.svg b/_includes/entypo/tv.svg new file mode 100644 index 0000000..8196721 --- /dev/null +++ b/_includes/entypo/tv.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/twitter-with-circle.svg b/_includes/entypo/twitter-with-circle.svg new file mode 100644 index 0000000..289786d --- /dev/null +++ b/_includes/entypo/twitter-with-circle.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/_includes/entypo/twitter.svg b/_includes/entypo/twitter.svg new file mode 100644 index 0000000..cba5a00 --- /dev/null +++ b/_includes/entypo/twitter.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/typing.svg b/_includes/entypo/typing.svg new file mode 100644 index 0000000..11a31bb --- /dev/null +++ b/_includes/entypo/typing.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/uninstall.svg b/_includes/entypo/uninstall.svg new file mode 100644 index 0000000..b45b977 --- /dev/null +++ b/_includes/entypo/uninstall.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/unread.svg b/_includes/entypo/unread.svg new file mode 100644 index 0000000..a282d97 --- /dev/null +++ b/_includes/entypo/unread.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/untag.svg b/_includes/entypo/untag.svg new file mode 100644 index 0000000..ca2cc04 --- /dev/null +++ b/_includes/entypo/untag.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/upload-to-cloud.svg b/_includes/entypo/upload-to-cloud.svg new file mode 100644 index 0000000..69d5561 --- /dev/null +++ b/_includes/entypo/upload-to-cloud.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/_includes/entypo/upload.svg b/_includes/entypo/upload.svg new file mode 100644 index 0000000..c9231fb --- /dev/null +++ b/_includes/entypo/upload.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/user.svg b/_includes/entypo/user.svg new file mode 100644 index 0000000..f80faf4 --- /dev/null +++ b/_includes/entypo/user.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/users.svg b/_includes/entypo/users.svg new file mode 100644 index 0000000..df202f7 --- /dev/null +++ b/_includes/entypo/users.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/_includes/entypo/v-card.svg b/_includes/entypo/v-card.svg new file mode 100644 index 0000000..6791026 --- /dev/null +++ b/_includes/entypo/v-card.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/video-camera.svg b/_includes/entypo/video-camera.svg new file mode 100644 index 0000000..6aefd83 --- /dev/null +++ b/_includes/entypo/video-camera.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/_includes/entypo/video.svg b/_includes/entypo/video.svg new file mode 100644 index 0000000..20157f2 --- /dev/null +++ b/_includes/entypo/video.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/vimeo-with-circle.svg b/_includes/entypo/vimeo-with-circle.svg new file mode 100644 index 0000000..273efd7 --- /dev/null +++ b/_includes/entypo/vimeo-with-circle.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/vimeo.svg b/_includes/entypo/vimeo.svg new file mode 100644 index 0000000..3470d73 --- /dev/null +++ b/_includes/entypo/vimeo.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/_includes/entypo/vine-with-circle.svg b/_includes/entypo/vine-with-circle.svg new file mode 100644 index 0000000..844dbeb --- /dev/null +++ b/_includes/entypo/vine-with-circle.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/vine.svg b/_includes/entypo/vine.svg new file mode 100644 index 0000000..c86e74f --- /dev/null +++ b/_includes/entypo/vine.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/vinyl.svg b/_includes/entypo/vinyl.svg new file mode 100644 index 0000000..2837049 --- /dev/null +++ b/_includes/entypo/vinyl.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/vk-alternitive.svg b/_includes/entypo/vk-alternitive.svg new file mode 100644 index 0000000..dfb6b48 --- /dev/null +++ b/_includes/entypo/vk-alternitive.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/vk-with-circle.svg b/_includes/entypo/vk-with-circle.svg new file mode 100644 index 0000000..a6321b9 --- /dev/null +++ b/_includes/entypo/vk-with-circle.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/vk.svg b/_includes/entypo/vk.svg new file mode 100644 index 0000000..fd05127 --- /dev/null +++ b/_includes/entypo/vk.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/_includes/entypo/voicemail.svg b/_includes/entypo/voicemail.svg new file mode 100644 index 0000000..6462b8c --- /dev/null +++ b/_includes/entypo/voicemail.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/wallet.svg b/_includes/entypo/wallet.svg new file mode 100644 index 0000000..f7751b1 --- /dev/null +++ b/_includes/entypo/wallet.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/warning.svg b/_includes/entypo/warning.svg new file mode 100644 index 0000000..e2c7c4a --- /dev/null +++ b/_includes/entypo/warning.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/water.svg b/_includes/entypo/water.svg new file mode 100644 index 0000000..cbc76a8 --- /dev/null +++ b/_includes/entypo/water.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/windows-store.svg b/_includes/entypo/windows-store.svg new file mode 100644 index 0000000..3035a51 --- /dev/null +++ b/_includes/entypo/windows-store.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/entypo/xing-with-circle.svg b/_includes/entypo/xing-with-circle.svg new file mode 100644 index 0000000..2a51396 --- /dev/null +++ b/_includes/entypo/xing-with-circle.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/_includes/entypo/xing.svg b/_includes/entypo/xing.svg new file mode 100644 index 0000000..98abfa8 --- /dev/null +++ b/_includes/entypo/xing.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/_includes/entypo/yelp.svg b/_includes/entypo/yelp.svg new file mode 100644 index 0000000..dbc16ce --- /dev/null +++ b/_includes/entypo/yelp.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/_includes/entypo/youko-with-circle.svg b/_includes/entypo/youko-with-circle.svg new file mode 100644 index 0000000..6c5be70 --- /dev/null +++ b/_includes/entypo/youko-with-circle.svg @@ -0,0 +1,23 @@ + + + + + + diff --git a/_includes/entypo/youko.svg b/_includes/entypo/youko.svg new file mode 100644 index 0000000..a565bc9 --- /dev/null +++ b/_includes/entypo/youko.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/_includes/entypo/youtube-with-circle.svg b/_includes/entypo/youtube-with-circle.svg new file mode 100644 index 0000000..834cd35 --- /dev/null +++ b/_includes/entypo/youtube-with-circle.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/_includes/entypo/youtube.svg b/_includes/entypo/youtube.svg new file mode 100644 index 0000000..536d49f --- /dev/null +++ b/_includes/entypo/youtube.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/_includes/icons/stackoverflow.svg b/_includes/icons/stackoverflow.svg new file mode 100644 index 0000000..0d53f38 --- /dev/null +++ b/_includes/icons/stackoverflow.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/_includes/structure/head.html b/_includes/structure/head.html new file mode 100644 index 0000000..ff1eacd --- /dev/null +++ b/_includes/structure/head.html @@ -0,0 +1,22 @@ + + + + + + + + + {% if page.title %} + {{ page.title }} · {{ site.title }} + {% else %} + {{ site.title }} + {% endif %} + + + + + + + + + diff --git a/_includes/utilities/group-by-array.html b/_includes/utilities/group-by-array.html new file mode 100644 index 0000000..abaced2 --- /dev/null +++ b/_includes/utilities/group-by-array.html @@ -0,0 +1,47 @@ +{% comment %} +# Jekyll Group-By-Array 0.1.0 +# https://github.com/mushishi78/jekyll-group-by-array +# © 2015 Max White +# MIT License +{% endcomment %} + +{% comment %} Initialize {% endcomment %} +{% assign __empty_array = '' | split: ',' %} +{% assign group_names = __empty_array %} +{% assign group_items = __empty_array %} + +{% comment %} Map {% endcomment %} +{% assign __names = include.collection | map: include.field %} + +{% comment %} Flatten {% endcomment %} +{% assign __names = __names | join: ',' | join: ',' | split: ',' %} + +{% comment %} Uniq {% endcomment %} +{% assign __names = __names | sort %} +{% for name in __names | sort %} + + {% comment %} If not equal to previous then it must be unique as sorted {% endcomment %} + {% unless name == previous %} + + {% comment %} Push to group_names {% endcomment %} + {% assign group_names = group_names | push: name %} + {% endunless %} + + {% assign previous = name %} +{% endfor %} + + +{% comment %} group_items {% endcomment %} +{% for name in group_names %} + + {% comment %} Collect if contains {% endcomment %} + {% assign __item = __empty_array %} + {% for __element in include.collection %} + {% if __element[include.field] contains name %} + {% assign __item = __item | push: __element %} + {% endif %} + {% endfor %} + + {% comment %} Push to group_items {% endcomment %} + {% assign group_items = group_items | push: __item %} +{% endfor %} \ No newline at end of file diff --git a/_includes/toc.html b/_includes/utilities/toc.html similarity index 100% rename from _includes/toc.html rename to _includes/utilities/toc.html diff --git a/_layouts/default.html b/_layouts/default.html old mode 100644 new mode 100755 index 4250be8..a983f24 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,101 +1,80 @@ - - - - - + - - - - - - - - - - - +{% include structure/head.html %} -{% seo %} + - - - - -
-
-

{{ site.title | default: site.github.repository_name }}

- - {% if site.logo %} - Logo - {% endif %} +{% include bars/nav.html %} -

{{ site.description_long }}

+{% capture col1 %}{% if page.narrow %}3{% else %}4{% endif %}{% endcapture %} - {% if site.github.is_project_page %} -

Vis kilden på min private git {{ site.github.repository_nwo }}

- {% endif %} +{% capture col2 %}{% if page.narrow %}9{% else %}8{% endif %}{% endcapture %} - {% if site.github.is_user_page %} -

Se min githubprofil!

- {% endif %} - - {% if site.show_downloads %} - - {% endif %} -
-
- - {{ content }} - -
- +
+
+
+ {% include bars/side.html %} +
+
+ {{ content }} +
+
+ {% include bars/bottom.html %} +
- - {% if site.google_analytics %} - - {% endif %} +
+ + + +{% if page.math %} + + + +{% endif %} + + - {% if page.math %} - - - {% endif %} - diff --git a/_layouts/defaults/lecture.html b/_layouts/defaults/lecture.html new file mode 100644 index 0000000..1577430 --- /dev/null +++ b/_layouts/defaults/lecture.html @@ -0,0 +1,29 @@ +--- +layout: default +--- + +

+ {{ page.title }} +

+ +
+ {% include components/lecture-meta.html %} +
+ +{{ content }} + + diff --git a/_layouts/defaults/list.html b/_layouts/defaults/list.html new file mode 100644 index 0000000..425265c --- /dev/null +++ b/_layouts/defaults/list.html @@ -0,0 +1,9 @@ +--- +layout: default +--- + +
+ {{ page.title }} +
+ +{{ content }} diff --git a/_layouts/defaults/page.html b/_layouts/defaults/page.html new file mode 100644 index 0000000..c3ab254 --- /dev/null +++ b/_layouts/defaults/page.html @@ -0,0 +1,13 @@ +--- +layout: default +--- + +

+ {% if page.title %} + {{ page.title }} + {% else %} + {{ site.name }} + {% endif %} +

+ +{{ content }} diff --git a/_layouts/defaults/portfolio.html b/_layouts/defaults/portfolio.html new file mode 100644 index 0000000..c282e10 --- /dev/null +++ b/_layouts/defaults/portfolio.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +

{{ page.title }}

+ +
+ {% include components/portfolio-meta.html %} +
+ +{{ content }} + diff --git a/_layouts/defaults/post.html b/_layouts/defaults/post.html new file mode 100644 index 0000000..8e44e3a --- /dev/null +++ b/_layouts/defaults/post.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +

{{ page.title }}

+ +
+ {% include components/post-meta.html %} +
+ +{{ content }} + diff --git a/_layouts/defaults/project.html b/_layouts/defaults/project.html new file mode 100644 index 0000000..557dcda --- /dev/null +++ b/_layouts/defaults/project.html @@ -0,0 +1,29 @@ +--- +layout: default +--- + +

+ {{ page.title }} +

+ +
+ {% include components/project-meta.html %} +
+ +{{ content }} + + diff --git a/_layouts/lecture.html b/_layouts/lecture.html deleted file mode 100644 index 931d823..0000000 --- a/_layouts/lecture.html +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: default - ---- - -{{ page.date | date: "%-d %B %Y" }} -

{{ page.title }}

- -

by {{ page.author | default: site.author }}

- -{{content}} - -{% if page.tags %} - tags: {{ page.tags | join: " - " }} -{% endif %} diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index 2b5a6d2..0000000 --- a/_layouts/page.html +++ /dev/null @@ -1,11 +0,0 @@ ---- -layout: default ---- - -

{{ page.title }}

- -

by {{ page.author | default: site.author }}

- -{{content}} - - diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index 0676aff..0000000 --- a/_layouts/post.html +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: default ---- - -{{ page.date | date: "%-d %B %Y" }} -

{{ page.title }}

- -

by {{ page.author | default: site.author }}

- -{{content}} - -{% if page.tags %} - tags: {{ page.tags | join: " - " }} -{% endif %} diff --git a/_pages/about.md b/_pages/about.md new file mode 100644 index 0000000..d7459fb --- /dev/null +++ b/_pages/about.md @@ -0,0 +1,129 @@ +--- +layout: defaults/page +permalink: /about/ +narrow: true +title: More info about Friday Theme +images: + - https://images.unsplash.com/photo-1421789665209-c9b2a435e3dc?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=5b1016b885e7438c4633109d77368d4d&auto=format&fit=crop&w=1651&q=80 + - https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=468a8c18f5d811cf03c654b653b5089e&auto=format&fit=crop&w=1650&q=80 + - https://images.unsplash.com/photo-1504626835342-6b01071d182e?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=975855d515c9d56352ee3bfe74287f2b&auto=format&fit=crop&w=1651&q=80 +--- + +## What is it? + +{% include components/intro.md %} + +## Full Feature List + +- Installation + - Designed for Jekyll 3.8 + - Compatible with GitHub Pages +- Configuration + - Useful data files to quickly generate the profile sidebar and site navigation + - Easy to configure, minimal options, sensible defaults +- Styling + - Styled with Bootstrap, proven to work cross-platform + - Minimal additional SCSS to get in the way + - Entirely customisable by tweaking the Boostrap SCSS variables +- Layout + - 2 column layout + - Context-sensitive sidebars for blogs, documentation pages and normal content + - Narrow/wide page options + - Responsive layout built in + - Lots of helpful includes and components to build out your site +- JavaScript and Components + - jQuery and Bootstrap JS included + - Use all the Bootstrap components +- Other goodies + - Entypo SVG icons included + - Syntax highlighting for code fragments using Rougify for over 100 different languages +- Blog + - A collection layout to build a blog with full support for tagging + - Interactive tag filtering for the blog +- Projects + - A layout to list your projects, with a documentation-like layout for each project + - Table of contents generation for documentation pages +- Permalinks + - Permalinks using baseurl throughout for deployment under a subdir or on GitHub pages + - Permalinks using .html throughout for deployment to environments not using default directory indexes + +## Examples + +Here's some quick examples of what it can do. + +### Code Highlighting + +{% highlight javascript %} +var modulePattern = (function() { + // your module code goes here + var sum = 0 ; + + return { + add:function() { + sum = sum + 1; + return sum; + }, + reset:function() { + return sum = 0; + } + } +}()); +{% endhighlight %} + +### Bootstrap Components + +Here's a CSS component, it's an alert box with the info color: + +
+ A simple info alert! +
+ +And this is a more sophisticated example, using the JS to include a carousel of images: + + + +The spinner. + +
+ Loading... +
+ +### Icons + +There's a suite of hundreds of Entypo icons included, here's just a few. + +
+ + {% include entypo/clock.svg %} + + + {% include entypo/cycle.svg %} + + + {% include entypo/chevron-up.svg %} + + + {% include entypo/new-message.svg %} + + + {% include entypo/shopping-cart.svg %} + +
+ + diff --git a/_pages/index.md b/_pages/index.md new file mode 100644 index 0000000..223292d --- /dev/null +++ b/_pages/index.md @@ -0,0 +1,30 @@ +--- +layout: defaults/page +permalink: index.html +narrow: true +title: Welcome to Friday Theme +--- + +## What is it? + +{% include components/intro.md %} + +[Here's the full feature list and some quick examples of what it can do.]({{ site.baseurl}}{% link _pages/about.md %}) + +## How to use it + +This web site is the documentation for the theme and also provides examples of how you can use and modify it. TIt is built using Friday Theme directly from the [GitHub repo](https://github.com/sfreytag/friday-theme) and published to GitHub pages. + +[The documentation]({{ site.baseurl }}{% link list/projects.md %}) covers the basics of installing and using it, and is an example of how you could write documentation about your own projects. + +[The blog]({{ site.baseurl }}{% link list/posts.html %}) has a bunch of tips about how to use Friday Theme. These show how the blog works, including the tags. There's the three most-recent posts below included below. + +
+ +### Recent Posts + +{% for post in site.posts limit:3 %} +{% include components/post-card.html %} +{% endfor %} + + diff --git a/pages/_posts/2020-08-17-ntnu-files.md b/_posts/2020-08-17-ntnu-files.md similarity index 100% rename from pages/_posts/2020-08-17-ntnu-files.md rename to _posts/2020-08-17-ntnu-files.md diff --git a/pages/_posts/2020-08-25-lecture-testing.md b/_posts/2020-08-25-lecture-testing.md similarity index 100% rename from pages/_posts/2020-08-25-lecture-testing.md rename to _posts/2020-08-25-lecture-testing.md diff --git a/_projects/install.md b/_projects/install.md new file mode 100644 index 0000000..a368ba1 --- /dev/null +++ b/_projects/install.md @@ -0,0 +1,44 @@ +--- +title: Install and Use Friday Theme +--- + +## About + +Friday Theme creates a web site that works as a personal homepage with an about section, a blog supporting tags and a collection of projects. + +It is quick to configure and simple to use. It is styled almost entirely with Bootstrap 4 so you can roll your own Bootstrap 4 theme for complete customisation. + +I'm assuming you have Jekyll installed already. If not, [look here.](https://jekyllrb.com/docs/installation/) + +The installation instructions below are Linux-flavoured instructions. There's some notes on the Jekyll site [about running it on Windows](https://jekyllrb.com/docs/windows/). + +## Download and Install + +1. Create a directory for your new site. +2. Download this repo into it from [GitHub](https://github.com/sfreytag/friday-theme). (Sorry, this theme is not available as a theme gem yet). +3. cd to your directory and run `jekyll serve`. This theme uses `markdown` and `pygments` so if they are missing, install them with `gem install pygments`, etc +4. Open the resulting site (probably `http://localhost:4000`) in your browser to check it works + +If it does, you can begin customising it. + +## Configuration + +Open `_config.yml` and change the `title` and `name` fields to your settings. Copy your own avatar image to `/theme/img/avatar.jpg` - it helps if this image is square. + +Set a `baseurl` if needed. This lets you run your site under a folder like `/site` if need be. + +## Tweak the Data Files + +There's two data files that help create elements of the web site. + +1. `_data/nav.yml` - use this to build a list of links that will be in the top nav bar. The defaults expose all elements of the theme. If you delete eg the about page, don't forget to edit this file. The Jekyll build will not warn you, because this file cannot use the `{% raw %}{% link %}{% endraw %}` tag. + +2. `_data/profile.yml` - this contains a list of links that will be in the left-hand profile bar. Typical usage would be to add your social media and other portfolio links. + + + + + + + + diff --git a/_projects/styling.md b/_projects/styling.md new file mode 100644 index 0000000..7801c34 --- /dev/null +++ b/_projects/styling.md @@ -0,0 +1,17 @@ +--- +title: Change the Appearance of Friday Theme +--- + +## Changing the Style + +The main stylesheet is `theme\css\site.scss`. This is the one that pulls everything together and creates the final, built output. So if you want to import other SCSS, add it here. + +This theme does not use its own SCSS or CSS apart from a few layout tweaks in `theme/_sass/_theme.css`. + +You can modify the appearance by customising Bootstrap directly by overriding its SCSS variables. There are some notes in the top of `theme\_sass\_variables.scss` about how to do this. + +This theme also bundles `syntax.css` for the pygments highlighting. It is the monokai theme. You can get other syntax.css files from various places. [Here](http://jwarby.github.io/jekyll-pygments-themes/languages/javascript.html) is quite a good one, with previews of a few languages. + +## Changing the Theme's HTML + +This is Jekyll so you are able to dive into the HTML and make this theme do what you need. The `list` directory contains the two files responsible for listing posts and projects. Quite a few chunks of HTML are tidied off into `_layouts/components`. Otherwise everything else should be standard Jekyll. \ No newline at end of file diff --git a/_projects/writing.md b/_projects/writing.md new file mode 100644 index 0000000..665468d --- /dev/null +++ b/_projects/writing.md @@ -0,0 +1,15 @@ +--- +title: Writing Content for Friday Theme +--- + +## Writing Content + +1. `_pages/index.md` - this is the default home page. +2. `_includes/components/intro.md` - this chunk is reused between the top of the homepage and the top of the about page. +3. `_pages/about.md` reuses the intro and adds a bit more content about yourself. +4. `_posts` is the default Jekyll collection of blog posts. Each post has a list of tags. These lists are combined into a tag cloud on the post list page. +5. `_projects` is a directory of project pages. These are not organised into a collection. Each page can hold a description or documentation about a hobby or open-source project. + +## HTML Content + +Jekyll lets you mix HTML into Markdown in the content, so it is possible to add HTML content. You can use this to utilise Bootstrap 4's components. The [blog posts]({% link list/posts.html %}) have some examples. \ No newline at end of file diff --git a/_sass/fonts.scss b/_sass/fonts.scss deleted file mode 100644 index 04c28e9..0000000 --- a/_sass/fonts.scss +++ /dev/null @@ -1,55 +0,0 @@ -@font-face { - font-family: 'Noto Sans'; - font-weight: 400; - font-style: normal; - src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot'); - src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'), - local('Noto Sans'), - local('Noto-Sans-regular'), - url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'), - url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'), - url('../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'), - url('../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg'); -} - -@font-face { - font-family: 'Noto Sans'; - font-weight: 700; - font-style: normal; - src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot'); - src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'), - local('Noto Sans Bold'), - local('Noto-Sans-700'), - url('../fonts/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'), - url('../fonts/Noto-Sans-700/Noto-Sans-700.woff') format('woff'), - url('../fonts/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'), - url('../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg'); -} - -@font-face { - font-family: 'Noto Sans'; - font-weight: 400; - font-style: italic; - src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot'); - src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix') format('embedded-opentype'), - local('Noto Sans Italic'), - local('Noto-Sans-italic'), - url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2') format('woff2'), - url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff') format('woff'), - url('../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf') format('truetype'), - url('../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans') format('svg'); -} - -@font-face { - font-family: 'Noto Sans'; - font-weight: 700; - font-style: italic; - src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot'); - src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix') format('embedded-opentype'), - local('Noto Sans Bold Italic'), - local('Noto-Sans-700italic'), - url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2') format('woff2'), - url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff') format('woff'), - url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf') format('truetype'), - url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans') format('svg'); -} diff --git a/_sass/jekyll-theme-minimal.scss b/_sass/jekyll-theme-minimal.scss deleted file mode 100644 index 916d195..0000000 --- a/_sass/jekyll-theme-minimal.scss +++ /dev/null @@ -1,272 +0,0 @@ -@import "fonts"; -@import "rouge-github"; - -body { - background-color: #fff; - padding:50px; - font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - color:#727272; - font-weight:400; -} - -h1, h2, h3, h4, h5, h6 { - color:#222; - margin:0 0 20px; -} - -p, ul, ol, table, pre, dl { - margin:0 0 20px; -} - -h1, h2, h3 { - line-height:1.1; -} - -h1 { - font-size:28px; -} - -h2 { - color:#393939; -} - -h3, h4, h5, h6 { - color:#494949; -} - -a { - color:#267CB9; - text-decoration:none; -} - -a:hover, a:focus { - color:#069; - font-weight: bold; -} - -a small { - font-size:11px; - color:#777; - margin-top:-0.3em; - display:block; -} - -a:hover small { - color:#777; -} - -.wrapper { - width:860px; - margin:0 auto; -} - -blockquote { - border-left:1px solid #e5e5e5; - margin:0; - padding:0 0 0 20px; - font-style:italic; -} - -code, pre { - font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace; - color:#333; -} - -pre { - padding:8px 15px; - background: #f8f8f8; - border-radius:5px; - border:1px solid #e5e5e5; - overflow-x: auto; -} - -table { - width:100%; - border-collapse:collapse; -} - -th, td { - text-align:left; - padding:5px 10px; - border-bottom:1px solid #e5e5e5; -} - -dt { - color:#444; - font-weight:700; -} - -th { - color:#444; -} - -img { - max-width:100%; -} - -header { - width:270px; - float:left; - position:fixed; - -webkit-font-smoothing:subpixel-antialiased; -} - -ul.downloads { - list-style:none; - height:40px; - padding:0; - background: #f4f4f4; - border-radius:5px; - border:1px solid #e0e0e0; - width:270px; -} - -.downloads li { - width:89px; - float:left; - border-right:1px solid #e0e0e0; - height:40px; -} - -.downloads li:first-child a { - border-radius:5px 0 0 5px; -} - -.downloads li:last-child a { - border-radius:0 5px 5px 0; -} - -.downloads a { - line-height:1; - font-size:11px; - color:#676767; - display:block; - text-align:center; - padding-top:6px; - height:34px; -} - -.downloads a:hover, .downloads a:focus { - color:#675C5C; - font-weight:bold; -} - -.downloads ul a:active { - background-color:#f0f0f0; -} - -strong { - color:#222; - font-weight:700; -} - -.downloads li + li + li { - border-right:none; - width:89px; -} - -.downloads a strong { - font-size:14px; - display:block; - color:#222; -} - -section { - width:500px; - float:right; - padding-bottom:50px; -} - -small { - font-size:11px; -} - -hr { - border:0; - background:#e5e5e5; - height:1px; - margin:0 0 20px; -} - -footer { - width:270px; - float:left; - position:fixed; - bottom:50px; - -webkit-font-smoothing:subpixel-antialiased; -} - -@media print, screen and (max-width: 960px) { - - div.wrapper { - width:auto; - margin:0; - } - - header, section, footer { - float:none; - position:static; - width:auto; - } - - header { - padding-right:320px; - } - - section { - border:1px solid #e5e5e5; - border-width:1px 0; - padding:20px 0; - margin:0 0 20px; - } - - header a small { - display:inline; - } - - header ul { - position:absolute; - right:50px; - top:52px; - } -} - -@media print, screen and (max-width: 720px) { - body { - word-wrap:break-word; - } - - header { - padding:0; - } - - header ul, header p.view { - position:static; - } - - pre, code { - word-wrap:normal; - } -} - -@media print, screen and (max-width: 480px) { - body { - padding:15px; - } - - .downloads { - width:99%; - } - - .downloads li, .downloads li + li + li { - width:33%; - } -} - -@media print { - body { - padding:0.4in; - font-size:12pt; - color:#444; - } -} diff --git a/_sass/rouge-github.scss b/_sass/rouge-github.scss deleted file mode 100644 index daf76ad..0000000 --- a/_sass/rouge-github.scss +++ /dev/null @@ -1,209 +0,0 @@ -.highlight table td { padding: 5px; } -.highlight table pre { margin: 0; } -.highlight .cm { - color: #999988; - font-style: italic; -} -.highlight .cp { - color: #999999; - font-weight: bold; -} -.highlight .c1 { - color: #999988; - font-style: italic; -} -.highlight .cs { - color: #999999; - font-weight: bold; - font-style: italic; -} -.highlight .c, .highlight .cd { - color: #999988; - font-style: italic; -} -.highlight .err { - color: #a61717; - background-color: #e3d2d2; -} -.highlight .gd { - color: #000000; - background-color: #ffdddd; -} -.highlight .ge { - color: #000000; - font-style: italic; -} -.highlight .gr { - color: #aa0000; -} -.highlight .gh { - color: #999999; -} -.highlight .gi { - color: #000000; - background-color: #ddffdd; -} -.highlight .go { - color: #888888; -} -.highlight .gp { - color: #555555; -} -.highlight .gs { - font-weight: bold; -} -.highlight .gu { - color: #aaaaaa; -} -.highlight .gt { - color: #aa0000; -} -.highlight .kc { - color: #000000; - font-weight: bold; -} -.highlight .kd { - color: #000000; - font-weight: bold; -} -.highlight .kn { - color: #000000; - font-weight: bold; -} -.highlight .kp { - color: #000000; - font-weight: bold; -} -.highlight .kr { - color: #000000; - font-weight: bold; -} -.highlight .kt { - color: #445588; - font-weight: bold; -} -.highlight .k, .highlight .kv { - color: #000000; - font-weight: bold; -} -.highlight .mf { - color: #009999; -} -.highlight .mh { - color: #009999; -} -.highlight .il { - color: #009999; -} -.highlight .mi { - color: #009999; -} -.highlight .mo { - color: #009999; -} -.highlight .m, .highlight .mb, .highlight .mx { - color: #009999; -} -.highlight .sb { - color: #d14; -} -.highlight .sc { - color: #d14; -} -.highlight .sd { - color: #d14; -} -.highlight .s2 { - color: #d14; -} -.highlight .se { - color: #d14; -} -.highlight .sh { - color: #d14; -} -.highlight .si { - color: #d14; -} -.highlight .sx { - color: #d14; -} -.highlight .sr { - color: #009926; -} -.highlight .s1 { - color: #d14; -} -.highlight .ss { - color: #990073; -} -.highlight .s { - color: #d14; -} -.highlight .na { - color: #008080; -} -.highlight .bp { - color: #999999; -} -.highlight .nb { - color: #0086B3; -} -.highlight .nc { - color: #445588; - font-weight: bold; -} -.highlight .no { - color: #008080; -} -.highlight .nd { - color: #3c5d5d; - font-weight: bold; -} -.highlight .ni { - color: #800080; -} -.highlight .ne { - color: #990000; - font-weight: bold; -} -.highlight .nf { - color: #990000; - font-weight: bold; -} -.highlight .nl { - color: #990000; - font-weight: bold; -} -.highlight .nn { - color: #555555; -} -.highlight .nt { - color: #000080; -} -.highlight .vc { - color: #008080; -} -.highlight .vg { - color: #008080; -} -.highlight .vi { - color: #008080; -} -.highlight .nv { - color: #008080; -} -.highlight .ow { - color: #000000; - font-weight: bold; -} -.highlight .o { - color: #000000; - font-weight: bold; -} -.highlight .w { - color: #bbbbbb; -} -.highlight { - background-color: #f8f8f8; -} diff --git a/assets/css/style.scss b/assets/css/style.scss deleted file mode 100644 index 0a14227..0000000 --- a/assets/css/style.scss +++ /dev/null @@ -1,4 +0,0 @@ ---- ---- - -@import "jekyll-theme-minimal"; diff --git a/assets/favicons/android-chrome-192x192.png b/assets/favicons/android-chrome-192x192.png deleted file mode 100644 index 676c18b..0000000 Binary files a/assets/favicons/android-chrome-192x192.png and /dev/null differ diff --git a/assets/favicons/android-chrome-512x512.png b/assets/favicons/android-chrome-512x512.png deleted file mode 100644 index 0e3aef9..0000000 Binary files a/assets/favicons/android-chrome-512x512.png and /dev/null differ diff --git a/assets/favicons/apple-touch-icon.png b/assets/favicons/apple-touch-icon.png deleted file mode 100644 index 78c0ffd..0000000 Binary files a/assets/favicons/apple-touch-icon.png and /dev/null differ diff --git a/assets/favicons/browserconfig.xml b/assets/favicons/browserconfig.xml deleted file mode 100644 index a4b7a06..0000000 --- a/assets/favicons/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/assets/favicons/favicon-16x16.png b/assets/favicons/favicon-16x16.png deleted file mode 100644 index 38c5b11..0000000 Binary files a/assets/favicons/favicon-16x16.png and /dev/null differ diff --git a/assets/favicons/favicon-32x32.png b/assets/favicons/favicon-32x32.png deleted file mode 100644 index 5f0b9c8..0000000 Binary files a/assets/favicons/favicon-32x32.png and /dev/null differ diff --git a/assets/favicons/html_code.html b/assets/favicons/html_code.html deleted file mode 100644 index e8e27ef..0000000 --- a/assets/favicons/html_code.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/assets/favicons/mstile-150x150.png b/assets/favicons/mstile-150x150.png deleted file mode 100644 index f3645e2..0000000 Binary files a/assets/favicons/mstile-150x150.png and /dev/null differ diff --git a/assets/favicons/safari-pinned-tab.svg b/assets/favicons/safari-pinned-tab.svg deleted file mode 100644 index 98eb934..0000000 --- a/assets/favicons/safari-pinned-tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/favicons/site.webmanifest b/assets/favicons/site.webmanifest deleted file mode 100644 index d557f0c..0000000 --- a/assets/favicons/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "GLaDOS", - "short_name": "GLaDOS", - "icons": [ - { - "src": "/assets/favicons/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/assets/favicons/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot b/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot deleted file mode 100755 index 03bf93f..0000000 Binary files a/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg b/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg deleted file mode 100755 index 925fe47..0000000 --- a/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf b/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf deleted file mode 100755 index 4599e3c..0000000 Binary files a/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff b/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff deleted file mode 100755 index 9d0b78d..0000000 Binary files a/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 b/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 deleted file mode 100755 index 55fc44b..0000000 Binary files a/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot b/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot deleted file mode 100755 index cb97b2b..0000000 Binary files a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg b/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg deleted file mode 100755 index abdafc0..0000000 --- a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf b/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf deleted file mode 100755 index 6640dbe..0000000 Binary files a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff b/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff deleted file mode 100755 index 209739e..0000000 Binary files a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff and /dev/null differ diff --git a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 b/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 deleted file mode 100755 index f5525aa..0000000 Binary files a/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 and /dev/null differ diff --git a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot b/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot deleted file mode 100755 index a997349..0000000 Binary files a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot and /dev/null differ diff --git a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg b/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg deleted file mode 100755 index dcd8fc8..0000000 --- a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf b/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf deleted file mode 100755 index 7f75a2d..0000000 Binary files a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf and /dev/null differ diff --git a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff b/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff deleted file mode 100755 index 6dce67c..0000000 Binary files a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff and /dev/null differ diff --git a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 b/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 deleted file mode 100755 index a9c14c4..0000000 Binary files a/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 and /dev/null differ diff --git a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot b/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot deleted file mode 100755 index 15fc8bf..0000000 Binary files a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot and /dev/null differ diff --git a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg b/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg deleted file mode 100755 index bd2894d..0000000 --- a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf b/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf deleted file mode 100755 index a83bbf9..0000000 Binary files a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf and /dev/null differ diff --git a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff b/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff deleted file mode 100755 index 17c8500..0000000 Binary files a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff and /dev/null differ diff --git a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 b/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 deleted file mode 100755 index a87d9cd..0000000 Binary files a/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 and /dev/null differ diff --git a/assets/img/gladosLogo.svg b/assets/img/gladosLogo.svg deleted file mode 100644 index 7626801..0000000 --- a/assets/img/gladosLogo.svg +++ /dev/null @@ -1,11626 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/js/scale.fix.js b/assets/js/scale.fix.js deleted file mode 100644 index 911d33c..0000000 --- a/assets/js/scale.fix.js +++ /dev/null @@ -1,27 +0,0 @@ -(function(document) { - var metas = document.getElementsByTagName('meta'), - changeViewportContent = function(content) { - for (var i = 0; i < metas.length; i++) { - if (metas[i].name == "viewport") { - metas[i].content = content; - } - } - }, - initialize = function() { - changeViewportContent("width=device-width, minimum-scale=1.0, maximum-scale=1.0"); - }, - gestureStart = function() { - changeViewportContent("width=device-width, minimum-scale=0.25, maximum-scale=1.6"); - }, - gestureEnd = function() { - initialize(); - }; - - - if (navigator.userAgent.match(/iPhone/i)) { - initialize(); - - document.addEventListener("touchstart", gestureStart, false); - document.addEventListener("touchend", gestureEnd, false); - } -})(document); diff --git a/courses/tfe4146/summary/figures/pnNatural.png b/courses/tfe4146/summary/figures/pnNatural.png new file mode 100644 index 0000000..87b6c11 Binary files /dev/null and b/courses/tfe4146/summary/figures/pnNatural.png differ diff --git a/courses/tfe4146/summary/summary.md b/courses/tfe4146/summary/summary.md index 84dcb93..47e790c 100644 --- a/courses/tfe4146/summary/summary.md +++ b/courses/tfe4146/summary/summary.md @@ -1,5 +1,4 @@ --- -layout: lecture title: "Oppsumering av TFE4146" description: Oppsummering av faget TFE4146 høsten 2020. math: true @@ -7,11 +6,11 @@ permalink: /:path date: 2020-11-20 --- -{% include toc.html %} +{% include utilities/toc.html %} -# Grunnleggende om halvledere +## Grunnleggende om halvledere -## Historie +### Historie * **1830** - Mekanisk * **1944** - Elektromekanisk @@ -24,26 +23,26 @@ date: 2020-11-20 Moores lov forutser hvor mange transistorer det er plass til per areal. Skal dobles hver 18-24 måneder. -## Halvledere +### Halvledere ![Oversikt over halvledere, metaller og isolatorer](./figures/conductivity.png) -## Atomer og elektroner +### Atomer og elektroner -### Uskarphetsrelasjonen +#### Uskarphetsrelasjonen $$ \Delta x \cdot \delta p_x \geq \frac{\hbar}{2} $$ -### Paulti prinsippet +#### Paulti prinsippet > To like fermioner kan ikke ha den samme kvantetilstanden. -### Schrödingers likning +#### Schrödingers likning $$ - \frac{\hbar ^2}{2m}\frac{\partial^2 \Psi(x,t)}{\partial x^2} + V(x)\Psi(x,t) = -\frac{\hbar}{j}\frac{\hbar ^2}{2m}\frac{\partial \Psi(x,t)}{\partial t} $$ -#### Løsninger +##### Løsninger $$ \psi(x) = Ae^{\pm ikx} \quad E= \frac{\hbar^2 k^2}{2m}$$ @@ -54,14 +53,14 @@ Partikkel i en "boks". ![Tette bånd](figures/tetteBonds.png) -## Effektiv masse +### Effektiv masse $$ m^* = \frac{\hbar ^2}{\frac{d^2 E}{d k^2}} $$ Ser på krumningen til energien i k-rommet. Høy kromming er liten effektiv masse, og vica versa. -## Intrisisk materiale +### Intrisisk materiale Inneholder bare en type materiale. @@ -73,25 +72,25 @@ Og $n_i$ er den intrisiske elektrontettheten, målt i $\text{cm}^{-3}$. ![Intrisisk materiale](figures/intrinsic.png) -## Ekstrinsiske materialer +### Ekstrinsiske materialer Disse er intrinsiske materialer som er dopet med et donor eller akseptor materiale. I Si er det typisk As (Arsenik, donor), eller B (Bor, akseptor). -### n-type +#### n-type $$ n_0 \gg p_0,n_i $$ Der $n_0$ er elektrontettheten i termisk likevekt. -### p-type +#### p-type $$ p_0 \gg n_0,n_i $$ Der $n_0$ er elektrontettheten i termisk likevekt. -## Elektron-Hull-par i intrinsiske materialer +### Elektron-Hull-par i intrinsiske materialer Elektroner og hull genereres og rekominerer kontinuerlig. @@ -100,7 +99,7 @@ $$ r_i = \alpha n_0 p_0 = \alpha n_i^2 = g_i $$ ![Bærertetthet](figures/dos.png) -## Bærertetthet +### Bærertetthet Hvordan beskrive hvordan $e^-$ og $h^+$ er fordelt i CB og VB. @@ -119,17 +118,17 @@ Finnes flere typer $$ N_C(E) = 4\pi \left(\frac{2m^*}{h^2}\right)^{\frac{3}{2}}\cdot E^\frac{1}{2} $$ -### Fermi-Dirac +#### Fermi-Dirac $$ f(E) = \frac{1}{1 + \exp{\frac{E - E_F}{k_B T}}} $$ -#### Fermi-Dirac ved forskjellige dopinger +##### Fermi-Dirac ved forskjellige dopinger ![Fermi-Dirac ved forskjellige dopinger](figures/fermiDirac.png) I et intrinsisk materiale ligger fordelingen midt i båndapet. For en n-type doping vil fordelingen bevege seg mot CB, og i p-type vil den bevege seg mot VB. -### Frie elektroner og hull +#### Frie elektroner og hull Ved å se på "summen" av elektrontilstander, $ N_C $ og sannsynligheten for å finne dem der. @@ -145,7 +144,7 @@ $$ n_0 = N_c e^{-\frac{E_C - E_F}{k_B T}}, \qquad N_c = 2\left(\frac{2\pi m_n^* $$ p_0 = N_v e^{-\frac{E_F - E_V}{k_B T}}, \qquad N_v = 2\left(\frac{2\pi m_p^* k_B T}{h^2}\right)^\frac{3}{2} $$ -### Noen resultater +#### Noen resultater $$ n_0 p_0 = N_c N_v e^{-\frac{E_g}{k_B T}} $$ $$ n_i p_i = N_c N_v e^{-\frac{E_g}{k_B T}} $$ @@ -161,11 +160,11 @@ $$ n_0 = n_i e^{-\frac{E_F - E_i}{k_B T}} $$ $$ p_0 = n_i e^{-\frac{E_i - E_F}{k_B T}} $$ -### Noen eksempler på bærertetthet +#### Noen eksempler på bærertetthet ![DOS](figures/carrierDensity.png) -## Drift av ladningsbærere +### Drift av ladningsbærere Drifter i alle retninger, ikke noen som er preferert. Litt som en biesverm. @@ -180,7 +179,7 @@ Der $$ \mu_n = \frac{q \tau}{m_n^*} \quad \text{og} \quad \mu_p = \frac{q \tau}{m_p^*} $$ -## Hall-effekten +### Hall-effekten Halleffekten kan brukes til å se på mobiliteten til majoritetsladningsbærerene. F.eks. hull i p-type er majoritetsladningsbærere. @@ -206,7 +205,7 @@ Som gir følgende $$ p_0 = \frac{I_x B_z}{q t V_{AB}} $$ -## Diffusjon +### Diffusjon Natrulig prosess , som å blande melk i kaffe/te eller hvordan oksygen tas opp i kroppen. @@ -216,7 +215,7 @@ To viktige parameter i diffusjon: * Spredningstiden $\tau$, gjennomsnittlig spredningsintervall * Spredningslengden $\bar{l}$, gjennomsnittlig lengde mellom spredninger -### Elektronfluxen gitt av diffusjon +#### Elektronfluxen gitt av diffusjon For elektroner: @@ -228,7 +227,7 @@ $$ \phi_p(x) = -D_p \frac{dp(x)}{dx}, \quad \text{der } D_n = \frac{\bar{l}^2}{ $D_n$ og $D_p$ kalles diffusjonskonstantene. -### Strømmen gitt av diffusjon +#### Strømmen gitt av diffusjon For elektroner: @@ -238,7 +237,7 @@ For hull: $$ J_p^\text{diff} = -q D_p \frac{dp(x)}{dx} $$ -### Strømmen gitt av diffusjon med påsatt elektrisk felt +#### Strømmen gitt av diffusjon med påsatt elektrisk felt For elektroner: @@ -252,7 +251,7 @@ Der summen av disse gir den totale strømmen: $$ J(x) = J_n(x) + J_p(x) $$ -## Einsteinrealasjonen +### Einsteinrealasjonen > I termisk likevekt går det ingen netto strøm. Dermed må det settes opp et E-felt for å kompensere driftsstrømmen. @@ -271,7 +270,7 @@ Dermed får vi Einsteinrelasjonen: $$ \frac{D}{\mu} = \frac{k_B T}{q} $$ -## Kontinuitetslikningen +### Kontinuitetslikningen Viser sammenheng mellom endring i hulltetthet og strømmenm gjennom et areale. @@ -282,7 +281,7 @@ $$ \frac{\partial \delta n(x,t)}{\partial t} = \phantom{-}\frac{1}{q}\frac{\part $$ \frac{\partial \delta p(x,t)}{\partial t} = -\frac{1}{q}\frac{\partial J_p(x,t)}{\partial x} - \frac{\delta p}{\tau_p} $$ -## Steady State +### Steady State Anta det lyses, med konstant effekt, på ene enden av en bit med n-type halvleder. @@ -308,7 +307,7 @@ Og med grensebetingelser, $\delta p(x=0) = \Delta p$ og $\delta p(x \rightarrow $$ \delta p(x) = \Delta p \exp{\frac{-x}{L_p}} $$ -## Haynes-Shockley eksperimentet +### Haynes-Shockley eksperimentet Eksperiment som gir informasjon om minoritetsladningsbærere. @@ -322,4 +321,13 @@ Ved å deretter sende inn en lyspuls på ene enden, vil det kunne detekteres en ![Haynes-Shockley Eksperiment](figures/haynes-ShockleyExp.png) -# PN-overganger \ No newline at end of file +## PN-overganger + +Vi vet at bitene i ugangspunlket er nøytrale. +Dermed ved termisk likevekt er følgende sant. + +$$ \frac{d E_F}{ d x} = 0 $$ + +$$ n_n \gg n_p $$ + +$$ p_p \gg p_n $$ \ No newline at end of file diff --git a/jekyll-theme-minimal.gemspec b/jekyll-theme-minimal.gemspec deleted file mode 100644 index efb2bc0..0000000 --- a/jekyll-theme-minimal.gemspec +++ /dev/null @@ -1,22 +0,0 @@ -# frozen_string_literal: true - -Gem::Specification.new do |s| - s.name = 'jekyll-theme-minimal' - s.version = '0.1.1' - s.license = 'CC0-1.0' - s.authors = ['Steve Smith', 'GitHub, Inc.'] - s.email = ['opensource+jekyll-theme-minimal@github.com'] - s.homepage = 'https://github.com/pages-themes/minimal' - s.summary = 'Minimal is a Jekyll theme for GitHub Pages' - - s.files = `git ls-files -z`.split("\x0").select do |f| - f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i) - end - - s.platform = Gem::Platform::RUBY - s.add_runtime_dependency 'jekyll', '> 3.5', '< 5.0' - s.add_runtime_dependency 'jekyll-seo-tag', '~> 2.0' - s.add_development_dependency 'html-proofer', '~> 3.0' - s.add_development_dependency 'rubocop', '~> 0.50' - s.add_development_dependency 'w3c_validators', '~> 1.3' -end diff --git a/list/posts.html b/list/posts.html new file mode 100644 index 0000000..f02117e --- /dev/null +++ b/list/posts.html @@ -0,0 +1,78 @@ +--- +title: All posts by year +show_tags: true +permalink: posts/ +--- + +
+ {% include components/all-tags.html %} +
+ +
+

+ Showing everything matching: + + clear +

+
+ +{% capture written_year %}'None'{% endcapture %} +{% for post in site.posts %} + + {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} + + {% if year != written_year %} +
+ {{ year }} +
+ {% capture written_year %}{{ year }}{% endcapture %} + {% endif %} + + {% include components/post-card.html %} + +{% endfor %} + + \ No newline at end of file diff --git a/list/projects.md b/list/projects.md new file mode 100644 index 0000000..df8bea1 --- /dev/null +++ b/list/projects.md @@ -0,0 +1,10 @@ +--- +title: Documentation +narrow: true +permalink: projects/ +show_profile: true +--- + +{% for project in site.projects %} +- [{{ project.title }}]({{ project.url | relative_url}}) +{% endfor %} diff --git a/pages/_tdt4160/firstTest.md b/pages/_tdt4160/firstTest.md deleted file mode 100644 index 5a88182..0000000 --- a/pages/_tdt4160/firstTest.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: lecture -title: "Testing of lecture notes in collectiosn" -description: Filer for prosjekter og stæsj på NTNU. -math: true -date: 2020-05-29 ---- - -Lecture notes is fun \eqref{test}. - -\begin{align} - E &= mc^2 \label{test} \\\\\ - &= mv^s \nonumber -\end{align} - -$\omega = 2 \pi f$ - -In equation \eqref{eq:sample}, we find the value of an -interesting integral: - -\begin{equation} - \int_0^\infty \frac{x^3}{e^x-1}\,dx = \frac{\pi^4}{15} - \label{eq:sample} -\end{equation} - -\begin{bmatrix} - a & b \\\\\ - c & c -\end{bmatrix} - -Whot \ No newline at end of file diff --git a/script/bootstrap b/script/bootstrap deleted file mode 100755 index 492e553..0000000 --- a/script/bootstrap +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -set -e - -gem install bundler -bundle install diff --git a/script/cibuild b/script/cibuild deleted file mode 100755 index 7acc16e..0000000 --- a/script/cibuild +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -set -e - -bundle exec jekyll build -bundle exec htmlproofer ./_site --check-html --check-sri -bundle exec rubocop -D -bundle exec script/validate-html -gem build jekyll-theme-minimal.gemspec diff --git a/script/release b/script/release deleted file mode 100755 index fdbcf9d..0000000 --- a/script/release +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# Tag and push a release. - -set -e - -# Make sure we're in the project root. - -cd $(dirname "$0")/.. - -# Make sure the darn thing works - -bundle update - -# Build a new gem archive. - -rm -rf jekyll-theme-minimal-*.gem -gem build -q jekyll-theme-minimal.gemspec - -# Make sure we're on the master branch. - -(git branch | grep -q 'master') || { - echo "Only release from the master branch." - exit 1 -} - -# Figure out what version we're releasing. - -tag=v`ls jekyll-theme-minimal-*.gem | sed 's/^jekyll-theme-minimal-\(.*\)\.gem$/\1/'` - -# Make sure we haven't released this version before. - -git fetch -t origin - -(git tag -l | grep -q "$tag") && { - echo "Whoops, there's already a '${tag}' tag." - exit 1 -} - -# Tag it and bag it. - -gem push jekyll-theme-minimal-*.gem && git tag "$tag" && - git push origin master && git push origin "$tag" diff --git a/script/validate-html b/script/validate-html deleted file mode 100755 index df4ec22..0000000 --- a/script/validate-html +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env ruby -# frozen_string_literal: true - -require 'w3c_validators' - -def validator(file) - extension = File.extname(file) - if extension == '.html' - W3CValidators::NuValidator.new - elsif extension == '.css' - W3CValidators::CSSValidator.new - end -end - -def validate(file) - puts "Checking #{file}..." - - path = File.expand_path "../_site/#{file}", __dir__ - results = validator(file).validate_file(path) - - return puts 'Valid!' if results.errors.empty? - - results.errors.each { |err| puts err.to_s } - exit 1 -end - -validate 'index.html' -validate File.join 'assets', 'css', 'style.css' diff --git a/theme/_sass/_theme.scss b/theme/_sass/_theme.scss new file mode 100644 index 0000000..76a14f4 --- /dev/null +++ b/theme/_sass/_theme.scss @@ -0,0 +1,68 @@ +.profile-image { + border: 5px solid rgba(0, 0, 0, 0.2); +} + +.site-container { + padding-top: 80px; +} + +.icon { + height: 21px; + width: 21px; + display: flex; + svg { + width: 21px; + height: 21px; + } +} + +.icon.grey svg path { + fill: #999; +} + +.icon.red svg path { + fill: #A00; +} + +.list-title { + text-transform: uppercase; + font-weight: 300; +} + +.navbar-toggler:focus { + outline: none; +} + +.navbar-toggler { + background-color: rgba(255,255,255,0.1); +} + +.navbar-toggler.collapsed { + background-color: transparent; +} + +h2[id]::before { + display: block; + height: 80px; + margin-top: -80px; + visibility: hidden; + content: ""; +} + +.sticky-top.space-before { + padding-top: 80px; + margin-top: -80px; +} + +@media print { + body { + -webkit-print-color-adjust: exact !important; + } + .jumbotron { + padding: 0; + } + .badge { + border: 0 !important; + } +} + diff --git a/theme/_sass/_variables.scss b/theme/_sass/_variables.scss new file mode 100644 index 0000000..b854cae --- /dev/null +++ b/theme/_sass/_variables.scss @@ -0,0 +1,12 @@ +// variables +// Customise bootstrap here, and set site-wide variables. Refer to +// https://github.com/twbs/bootstrap/blob/master/scss/_variables.scss +// for things to override. + +// Set the primarys colour to green. +$green: #28a745 !default; +$primary: $green !default; + +img { + max-width: 100%; +} \ No newline at end of file diff --git a/theme/_sass/bootstrap/_alert.scss b/theme/_sass/bootstrap/_alert.scss new file mode 100644 index 0000000..da2a98a --- /dev/null +++ b/theme/_sass/bootstrap/_alert.scss @@ -0,0 +1,51 @@ +// +// Base styles +// + +.alert { + position: relative; + padding: $alert-padding-y $alert-padding-x; + margin-bottom: $alert-margin-bottom; + border: $alert-border-width solid transparent; + @include border-radius($alert-border-radius); +} + +// Headings for larger alerts +.alert-heading { + // Specified to prevent conflicts of changing $headings-color + color: inherit; +} + +// Provide class for links that match alerts +.alert-link { + font-weight: $alert-link-font-weight; +} + + +// Dismissible alerts +// +// Expand the right padding and account for the close button's positioning. + +.alert-dismissible { + padding-right: $close-font-size + $alert-padding-x * 2; + + // Adjust close link position + .close { + position: absolute; + top: 0; + right: 0; + padding: $alert-padding-y $alert-padding-x; + color: inherit; + } +} + + +// Alternate styles +// +// Generate contextual modifier classes for colorizing the alert. + +@each $color, $value in $theme-colors { + .alert-#{$color} { + @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level)); + } +} diff --git a/theme/_sass/bootstrap/_badge.scss b/theme/_sass/bootstrap/_badge.scss new file mode 100644 index 0000000..42c5d08 --- /dev/null +++ b/theme/_sass/bootstrap/_badge.scss @@ -0,0 +1,54 @@ +// Base class +// +// Requires one of the contextual, color modifier classes for `color` and +// `background-color`. + +.badge { + display: inline-block; + padding: $badge-padding-y $badge-padding-x; + @include font-size($badge-font-size); + font-weight: $badge-font-weight; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + @include border-radius($badge-border-radius); + @include transition($badge-transition); + + @at-root a#{&} { + @include hover-focus() { + text-decoration: none; + } + } + + // Empty badges collapse automatically + &:empty { + display: none; + } +} + +// Quick fix for badges in buttons +.btn .badge { + position: relative; + top: -1px; +} + +// Pill badges +// +// Make them extra rounded with a modifier to replace v3's badges. + +.badge-pill { + padding-right: $badge-pill-padding-x; + padding-left: $badge-pill-padding-x; + @include border-radius($badge-pill-border-radius); +} + +// Colors +// +// Contextual variations (linked badges get darker on :hover). + +@each $color, $value in $theme-colors { + .badge-#{$color} { + @include badge-variant($value); + } +} diff --git a/theme/_sass/bootstrap/_breadcrumb.scss b/theme/_sass/bootstrap/_breadcrumb.scss new file mode 100644 index 0000000..d748894 --- /dev/null +++ b/theme/_sass/bootstrap/_breadcrumb.scss @@ -0,0 +1,42 @@ +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: $breadcrumb-padding-y $breadcrumb-padding-x; + margin-bottom: $breadcrumb-margin-bottom; + @include font-size($breadcrumb-font-size); + list-style: none; + background-color: $breadcrumb-bg; + @include border-radius($breadcrumb-border-radius); +} + +.breadcrumb-item { + // The separator between breadcrumbs (by default, a forward-slash: "/") + + .breadcrumb-item { + padding-left: $breadcrumb-item-padding; + + &::before { + display: inline-block; // Suppress underlining of the separator in modern browsers + padding-right: $breadcrumb-item-padding; + color: $breadcrumb-divider-color; + content: escape-svg($breadcrumb-divider); + } + } + + // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built + // without `