jekyll-theme-prettydocs-full 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +7 -0
- data/_data/default/base.yml +8 -0
- data/_data/default/cards.yml +35 -0
- data/_data/default/contact.yml +24 -0
- data/_data/default/faqs.yml +46 -0
- data/_data/default/timeline.yml +33 -0
- data/_includes/_partials/item.html +11 -0
- data/_includes/_partials/post.html +40 -0
- data/_includes/_partials/social-buttons.html +12 -0
- data/_includes/_partials/toc.html +43 -0
- data/_includes/_sections/blog_post.html +50 -0
- data/_includes/_sections/cards.html +25 -0
- data/_includes/_sections/contact.html +29 -0
- data/_includes/_sections/faqs.html +28 -0
- data/_includes/_sections/items-list.html +11 -0
- data/_includes/_sections/not-found.html +11 -0
- data/_includes/_sections/resources.html +68 -0
- data/_includes/_sections/timeline.html +40 -0
- data/_includes/_shower/setup.md +39 -0
- data/_includes/_shower/showerify.html +125 -0
- data/_includes/_theme/footer.html +8 -0
- data/_includes/_theme/head.html +43 -0
- data/_includes/_theme/header.html +36 -0
- data/_includes/_theme/js.html +11 -0
- data/_includes/_utils/common +29 -0
- data/_includes/_utils/picture +18 -0
- data/_layouts/compress.html +9 -0
- data/_layouts/default.html +19 -0
- data/_layouts/faqs.html +9 -0
- data/_layouts/landing.html +18 -0
- data/_layouts/page.html +18 -0
- data/_layouts/post.html +5 -0
- data/_layouts/shower.html +27 -0
- data/_sass/globals/_base.scss +44 -0
- data/_sass/globals/_mixins.scss +175 -0
- data/_sass/partials/_base.scss +108 -0
- data/_sass/partials/_buttons.scss +97 -0
- data/_sass/partials/_cards.scss +170 -0
- data/_sass/partials/_contact.scss +29 -0
- data/_sass/partials/_doc.scss +521 -0
- data/_sass/partials/_footer.scss +9 -0
- data/_sass/partials/_header.scss +87 -0
- data/_sass/partials/_helper.scss +42 -0
- data/_sass/partials/_landing.scss +61 -0
- data/_sass/partials/_post.scss +32 -0
- data/_sass/partials/_resources.scss +10 -0
- data/_sass/partials/_toc.scss +163 -0
- data/_sass/prettydocs-jekyll.scss +20 -0
- data/_sass/vendor/_shower.scss +535 -0
- data/_sass/vendor/_timeline.scss +221 -0
- data/_sass/vendor/shower/defaults.scss +47 -0
- data/_sass/vendor/shower/reset.scss +46 -0
- data/_sass/vendor/shower/screen.scss +549 -0
- data/_sass/vendor/timeline/functions/desaturated-lighten.scss +7 -0
- data/_sass/vendor/timeline/functions/map-deep-get.scss +9 -0
- data/_sass/vendor/timeline/functions/map-set.scss +5 -0
- data/_sass/vendor/timeline/functions/mutate-colors.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-element.scss +23 -0
- data/_sass/vendor/timeline/mixins/timeline-event-variant.scss +20 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss +6 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss +17 -0
- data/_sass/vendor/timeline/mixins/timeline-item-right-side-position.scss +21 -0
- data/_sass/vendor/timeline/mixins/timeline-item-start-margins.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-item-variant.scss +28 -0
- data/_sass/vendor/timeline/mixins/timeline-label-variant.scss +3 -0
- data/_sass/vendor/timeline/mixins/timeline-line-variant.scss +5 -0
- data/_sass/vendor/timeline/mixins/timeline-point-color-variant.scss +4 -0
- data/_sass/vendor/timeline/mixins/timeline-point-size-variant.scss +12 -0
- data/_sass/vendor/timeline/mixins/timeline-responsive-variant.scss +26 -0
- data/_sass/vendor/timeline/mixins/timeline-row-clearfix.scss +10 -0
- data/_sass/vendor/timeline/mixins/timeline-single-column.scss +56 -0
- data/_sass/vendor/timeline/mixins/transform-center.scss +3 -0
- data/_sass/vendor/timeline/variables.scss +90 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/shower.scss +4 -0
- data/assets/images/empty.gif +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/labtocat.png +0 -0
- data/assets/js/main.js +45 -0
- data/assets/plugins/elegant_font/Licensing/gpl_license.txt +339 -0
- data/assets/plugins/elegant_font/Licensing/mit_license.txt +21 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.svg +1832 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff +0 -0
- data/assets/plugins/elegant_font/css/index.html +3019 -0
- data/assets/plugins/elegant_font/css/lte-ie7.js +387 -0
- data/assets/plugins/elegant_font/css/style.css +1159 -0
- data/assets/plugins/elegant_font/images/PNG/arrow-up-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_back.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_move.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_balance.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_blocked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-checked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-selected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calendar.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calulator.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clipboard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cog.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cogs.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_creditcard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_desktop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_film.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_genius.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_group.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_headphones.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_hourglass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_image.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_images.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_laptop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_loading.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-06.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mobile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_music.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ol.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_paperclip.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_phone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_piechart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_profile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_refresh.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_rook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_table.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tablet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_target.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tool.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tools.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ul.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_square.png +0 -0
- data/assets/plugins/elegant_font/images/SVG/arrow-up-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_back.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2dwnn_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_move.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-horiz.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-vert.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_balance.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_blocked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-checked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-selected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calculator_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calendar.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calulator.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clipboard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cog.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cogs.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_creditcard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_desktop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_film.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_genius.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-2x2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-3x3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_group.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_headphones.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_hourglass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_image.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_images.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_laptop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lifesaver.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_loading.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-06.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mobile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_music.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ol.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_paperclip.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_phone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_piechart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_profile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_refresh.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_rook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_table.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tablet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_target.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tool.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tools.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ul.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumbleupon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_square.svg +1 -0
- data/assets/plugins/prism/min/prism-min.js +2 -0
- data/assets/plugins/prism/prism.css +163 -0
- data/assets/plugins/prism/prism.js +18 -0
- metadata +929 -0
| @@ -0,0 +1,68 @@ | |
| 1 | 
            +
            {% assign resources = '' | split: '' %}
         | 
| 2 | 
            +
            {% assign resource_url = "/content" | prepend: site.baseurl %}
         | 
| 3 | 
            +
            {% assign resource_path = '' | split: '' %}
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            {% for post in site.posts %}
         | 
| 6 | 
            +
                {% assign is_valid = true %}
         | 
| 7 | 
            +
                {% for category in page.categories %}
         | 
| 8 | 
            +
                    {% unless post.categories contains category %}
         | 
| 9 | 
            +
                        {% assign is_valid = false %}
         | 
| 10 | 
            +
                        {% break %}
         | 
| 11 | 
            +
                    {% endunless %}
         | 
| 12 | 
            +
                {% endfor %}
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                {% if is_valid %}
         | 
| 15 | 
            +
                    {% assign resources = resources | push: post %}
         | 
| 16 | 
            +
                {% endif %}
         | 
| 17 | 
            +
            {% endfor %}
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            {% capture element %}<a href="{{ resource_url }}">content</a>{% endcapture %}
         | 
| 20 | 
            +
            {% assign resource_path = resource_path | push: element %}
         | 
| 21 | 
            +
            {% for category in page.categories %}
         | 
| 22 | 
            +
              {% assign resource_url =  resource_url | append: "/" | append: category %}
         | 
| 23 | 
            +
              {% capture element %}<a href="{{ resource_url }}">{{ category }}</a>{% endcapture %}
         | 
| 24 | 
            +
              {% assign resource_path = resource_path | push: element %}
         | 
| 25 | 
            +
            {% endfor %}
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            <section id="resources" class="resources-section doc-wrapper">
         | 
| 28 | 
            +
                <div class="container">
         | 
| 29 | 
            +
                    <div id="doc-header" class="doc-header text-center">
         | 
| 30 | 
            +
                        <h1 class="doc-title">
         | 
| 31 | 
            +
                            <span aria-hidden="true" class="fas fa-code-branch icon">
         | 
| 32 | 
            +
                            </span> {{ page.title }}
         | 
| 33 | 
            +
                        </h1>
         | 
| 34 | 
            +
                        <div class="meta">
         | 
| 35 | 
            +
                            {% if page.subcategories.size > 0 %}
         | 
| 36 | 
            +
                                <i class="fas fa-tags"></i> Subcategorii:
         | 
| 37 | 
            +
                                {% for subcategory in page.subcategories %}
         | 
| 38 | 
            +
                                    <a href="{{ subcategory }}">
         | 
| 39 | 
            +
                                        <span class="label label-info">{{ subcategory }}</span>
         | 
| 40 | 
            +
                                    </a>
         | 
| 41 | 
            +
                                {% endfor %}
         | 
| 42 | 
            +
                            {% else %}
         | 
| 43 | 
            +
                                <i class="fas fa-arrow-left"></i>
         | 
| 44 | 
            +
                                <a href="../">Back...</a>
         | 
| 45 | 
            +
                            {% endif %}
         | 
| 46 | 
            +
                        </div>
         | 
| 47 | 
            +
                    </div><!--//doc-header-->
         | 
| 48 | 
            +
                    <div class="doc-body">
         | 
| 49 | 
            +
                        <div class="doc-content">
         | 
| 50 | 
            +
                            <div class="content-inner">
         | 
| 51 | 
            +
                                <section id="dashboards" class="doc-section">
         | 
| 52 | 
            +
                                    <div class="section-block">
         | 
| 53 | 
            +
                                        <div class="row">
         | 
| 54 | 
            +
                                            {% if resources.size > 0 %}
         | 
| 55 | 
            +
                                                {% for post in resources %}
         | 
| 56 | 
            +
                                                    {% include _partials/post.html %}
         | 
| 57 | 
            +
                                                {% endfor %}
         | 
| 58 | 
            +
                                            {% else %}
         | 
| 59 | 
            +
                                                This directory does not contain any content.
         | 
| 60 | 
            +
                                            {% endif %}
         | 
| 61 | 
            +
                                        </div>
         | 
| 62 | 
            +
                                    </div>
         | 
| 63 | 
            +
                                </section>
         | 
| 64 | 
            +
                            </div>
         | 
| 65 | 
            +
                        </div>
         | 
| 66 | 
            +
                    </div>
         | 
| 67 | 
            +
                </div>
         | 
| 68 | 
            +
            </section>
         | 
| @@ -0,0 +1,40 @@ | |
| 1 | 
            +
            {% include _utils/common %}
         | 
| 2 | 
            +
            {% if include.timeline %}{% assign timeline = include.timeline%}{% endif %}
         | 
| 3 | 
            +
            <section class="timeline timeline-line-dotted">
         | 
| 4 | 
            +
                {% for item in timeline %}
         | 
| 5 | 
            +
                    {% if item.type == "event" %}
         | 
| 6 | 
            +
                        <div class="timeline-item{% if item.position %} timeline-item-{{ item.position }}{% endif %}">
         | 
| 7 | 
            +
                            <div class="timeline-point timeline-point-{{ item.point.class | default: 'black' }}">
         | 
| 8 | 
            +
                                {% if item.point.icon %}
         | 
| 9 | 
            +
                                    <i class="{{ item.point.icon }}"></i>
         | 
| 10 | 
            +
                                {% endif %}
         | 
| 11 | 
            +
                            </div>
         | 
| 12 | 
            +
                            <div class="timeline-event timeline-event-{{ item.class | default: 'primary' }}">
         | 
| 13 | 
            +
                                <div class="timeline-heading">
         | 
| 14 | 
            +
                                    <h4>{{ item.heading }}</h4>
         | 
| 15 | 
            +
                                </div>
         | 
| 16 | 
            +
                                {% if item.body%}
         | 
| 17 | 
            +
                                    <div class="timeline-body">
         | 
| 18 | 
            +
                                        <p>{{ item.body }}</p>
         | 
| 19 | 
            +
                                    </div>
         | 
| 20 | 
            +
                                {% endif %}
         | 
| 21 | 
            +
                                {% if item.footer %}
         | 
| 22 | 
            +
                                    <div class="timeline-footer">
         | 
| 23 | 
            +
                                        <p class="text-right">{{ item.footer }}</p>
         | 
| 24 | 
            +
                                    </div>
         | 
| 25 | 
            +
                                {% endif %}
         | 
| 26 | 
            +
                            </div>
         | 
| 27 | 
            +
                        </div>
         | 
| 28 | 
            +
                    {% elsif item.type == "label" %}
         | 
| 29 | 
            +
                        <span class="timeline-label">
         | 
| 30 | 
            +
                            <span class="label label-{{ item.class }}">    
         | 
| 31 | 
            +
                                {% if item.content %}
         | 
| 32 | 
            +
                                    {{ item.content }}
         | 
| 33 | 
            +
                                {% elsif item.icon %}
         | 
| 34 | 
            +
                                    <i class="{{ item.icon }}"></i>
         | 
| 35 | 
            +
                                {% endif %}
         | 
| 36 | 
            +
                            </span>
         | 
| 37 | 
            +
                        </span>
         | 
| 38 | 
            +
                    {% endif %}
         | 
| 39 | 
            +
                {% endfor %}
         | 
| 40 | 
            +
            </section>
         | 
| @@ -0,0 +1,39 @@ | |
| 1 | 
            +
            {% capture strip_whitespace %}
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Set all the things
         | 
| 4 | 
            +
             | 
| 5 | 
            +
                {% capture width %}{% if page.width %}{{ page.width }}{% else %}{{ site.default_width }}{% endif %}{% endcapture %}
         | 
| 6 | 
            +
                {% capture lang %}{% if page.lang %}{{ page.lang }}{% else %}{{ site.default_lang }}{% endif %}{% endcapture %}
         | 
| 7 | 
            +
                {% capture body_class %}{% if page.body_class %}{{ page.body_class }}{% else %}{{ site.default_body_class }}{% endif %}{% endcapture %}
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                {% capture author_name %}{% if page.author %}{% if page.author.name %}{{ page.author.name }}{% else %}{{ page.author }}{% endif %}{% else %}{{ site.author.name }}{% endif %}{% endcapture %}
         | 
| 10 | 
            +
                {% capture author_url  %}{% if page.author %}{{ page.author.url }}{% else %}{% if site.author.url %}{{ site.author.url }}{% endif %}{% endif %}{% endcapture %}
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                {% capture company_name %}{% if page.author.company %}{% if page.author.company.name %}{{ page.author.company.name }}{% else %}{{ page.author.company }}{% endif %}{% elsif page.company %}{% if page.company.name %}{{ page.company.name }}{% else %}{{ page.company }}{% endif %}{% else %}{{ site.author.company.name }}{% endif %}{% endcapture %}
         | 
| 13 | 
            +
                {% capture company_url  %}{% if page.author.company %}{{ page.author.company.url }}{% elsif page.company %}{{ page.company.url }}{% else %}{% if site.author.company.url %}{{ site.author.company.url }}{% endif %}{% endif %}{% endcapture %}
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                {% capture title %}{% if page.title %}{{ page.title }}{% else %}{{ supertitle }}{% endif %}{% endcapture %}
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                {% capture subtitle %}{% if page.subtitle %}{{ page.subtitle }}{% else %}{% if author_url != '' %}[{{ author_name }}]({{ author_url }}){% else %}{{ author_name }}{% endif %}{% if company_name != '' %}, {% if company_url != '' %}[{{ company_name }}]({{ company_url }}){% else %}{{ company_name }}{% endif %}{% endif %}{% endif %}{% endcapture %}{% capture subtitle %}{{ subtitle | markdownify }}{% endcapture %}
         | 
| 18 | 
            +
             | 
| 19 | 
            +
                {% capture fork_url %}{% if page.fork_url %}{{ page.fork_url }}{% else %}{{ site.fork_url }}{% endif %}{% endcapture %}
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            ## Set the progress var
         | 
| 22 | 
            +
             | 
| 23 | 
            +
                {% assign progress = page.progress | append:'' | size %}
         | 
| 24 | 
            +
                {% if progress == 0 %}
         | 
| 25 | 
            +
                    {% assign progress = site.progress %}
         | 
| 26 | 
            +
                {% else %}
         | 
| 27 | 
            +
                    {% assign progress = page.progress %}
         | 
| 28 | 
            +
                {% endif %}
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            ## Set the line numbers var
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                {% assign line_numbers = page.line_numbers | append:'' | size %}
         | 
| 33 | 
            +
                {% if line_numbers == 0 %}
         | 
| 34 | 
            +
                    {% assign line_numbers = site.line_numbers %}
         | 
| 35 | 
            +
                {% else %}
         | 
| 36 | 
            +
                    {% assign line_numbers = page.line_numbers %}
         | 
| 37 | 
            +
                {% endif %}
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            {% endcapture %}
         | 
| @@ -0,0 +1,125 @@ | |
| 1 | 
            +
            {% capture strip_whitespace %}
         | 
| 2 | 
            +
            {% include _shower/setup.md %}
         | 
| 3 | 
            +
            {% assign items = showerify_input | split:'<h1' %}
         | 
| 4 | 
            +
            {% for item in items %}
         | 
| 5 | 
            +
                {% assign subitems = item | split:'</h1>' %}
         | 
| 6 | 
            +
                {% assign subsubitems = subitems[0] %}
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                {% capture subsubitems2 %}{{ subsubitems }}{% endcapture %}
         | 
| 9 | 
            +
                {% assign subsubitems2 = subsubitems2 | split: '>' %}
         | 
| 10 | 
            +
                {% assign lol = subsubitems2[0] | append:">" %}
         | 
| 11 | 
            +
                {% capture supertitle %}{{ subsubitems | remove_first:lol }}{% endcapture %}
         | 
| 12 | 
            +
            {% endfor %}
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            {% assign flag = false %}
         | 
| 15 | 
            +
            {% for item in items %}
         | 
| 16 | 
            +
                {% capture h1_attrs %}{{ item | split:'>' | first }}{% endcapture %}
         | 
| 17 | 
            +
                {% if flag != false %}
         | 
| 18 | 
            +
                    {% capture showerify_middle %}<section{{ h1_attrs | replace_first:'class="','class="slide ' }}{% unless h1_attrs contains 'class' %} class="slide cover"{% endunless %}><div><h2{% endcapture %}
         | 
| 19 | 
            +
                    {% assign slides = item | remove_first:h1_attrs | replace_first:'</h1>','</h2>' | split: '<h2' %}
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                    {% assign flag = false %}
         | 
| 22 | 
            +
                    {% for slide in slides %}
         | 
| 23 | 
            +
                        {% capture slide_attrs %}{{ slide | split:'>' | first }}{% endcapture %}
         | 
| 24 | 
            +
             | 
| 25 | 
            +
                        <!-- Looking for strong in header for shout -->
         | 
| 26 | 
            +
                        {% capture slide_header_content %}^BEGIN^{{ slide | remove_first:slide_attrs | split:'</h2>' | first }}$END${% endcapture %}
         | 
| 27 | 
            +
                        {% assign slide_extra_class = '' %}
         | 
| 28 | 
            +
                        {% if slide_header_content contains '^BEGIN^><strong>' and slide_header_content contains '</strong>$END$' %}
         | 
| 29 | 
            +
                            {% assign slide_extra_class = ' shout' %}
         | 
| 30 | 
            +
                        {% endif %}
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                        {% if flag == false %}
         | 
| 33 | 
            +
                            {% capture showerify_middle %}{{ showerify_middle }}{{ slide }}{% endcapture %}
         | 
| 34 | 
            +
                            {% assign flag = true %}
         | 
| 35 | 
            +
                        {% else %}
         | 
| 36 | 
            +
                            {% capture showerify_middle %}{{ showerify_middle }}</div></section>
         | 
| 37 | 
            +
            <section class="slide{{ slide_extra_class }}"{{ slide_attrs }}><div><h2{% endcapture %}
         | 
| 38 | 
            +
                            {% assign newslide = slide | remove_first:slide_attrs %}
         | 
| 39 | 
            +
                            {% if slide_extra_class %}
         | 
| 40 | 
            +
                                {% assign newslide = newslide | replace_first:'><strong>','>' %}
         | 
| 41 | 
            +
                                {% assign newslide = newslide | replace_first:'</strong></h2>','</h2>' %}
         | 
| 42 | 
            +
                            {% endif %}
         | 
| 43 | 
            +
                            {% capture showerify_middle %}{{ showerify_middle }}{{ newslide }}{% endcapture %}
         | 
| 44 | 
            +
                        {% endif %}
         | 
| 45 | 
            +
                    {% endfor %}
         | 
| 46 | 
            +
                    {% capture showerify_middle %}{{ showerify_middle }}</div></section>{% endcapture %}
         | 
| 47 | 
            +
                {% else %}
         | 
| 48 | 
            +
                    {% assign flag = true %}
         | 
| 49 | 
            +
                {% endif %}
         | 
| 50 | 
            +
            {% endfor %}
         | 
| 51 | 
            +
            <!-- There is a difference between Liquid 1.4.1 and 1.5.0 in replace syntax, and in 1.4.1 you can't chain the one that is only there in 1.5.0, so multiple assigns there -->
         | 
| 52 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'class="slide" class="','class="slide ' %}
         | 
| 53 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'</mark>','</mark>' %}
         | 
| 54 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<mark>','<mark>' %}
         | 
| 55 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<mark class="next">','<mark class="next">' %}
         | 
| 56 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<mark class="comment">','<mark class="comment">' %}
         | 
| 57 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<mark class="important">','<mark class="important">' %}
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            <!-- Replacing inline “comment” with <footer> -->
         | 
| 60 | 
            +
            {% assign footers = showerify_middle | split:'<p>// ' %}
         | 
| 61 | 
            +
            {% assign iteration = 0 %}
         | 
| 62 | 
            +
            {% for footer in footers %}
         | 
| 63 | 
            +
                {% if iteration > 0 %}
         | 
| 64 | 
            +
                    {% assign footer_content = footer | split:'</p>' | first %}
         | 
| 65 | 
            +
                    {% capture footer_oldcontent %}<p>// {{ footer_content }}</p>{% endcapture %}
         | 
| 66 | 
            +
                    {% capture footer_newcontent %}<footer>{{ footer_content }}</footer>{% endcapture %}
         | 
| 67 | 
            +
                    {% assign showerify_middle = showerify_middle | replace_first:footer_oldcontent,footer_newcontent %}
         | 
| 68 | 
            +
                {% endif %}
         | 
| 69 | 
            +
                {% assign iteration = iteration | plus:1 %}
         | 
| 70 | 
            +
            {% endfor %}
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            <!-- The same thing, but this time for comment without the space -->
         | 
| 73 | 
            +
            {% assign footers = showerify_middle | split:'<p>//' %}
         | 
| 74 | 
            +
            {% assign iteration = 0 %}
         | 
| 75 | 
            +
            {% for footer in footers %}
         | 
| 76 | 
            +
                {% if iteration > 0 %}
         | 
| 77 | 
            +
                    {% assign footer_content = footer | split:'</p>' | first %}
         | 
| 78 | 
            +
                    {% capture footer_oldcontent %}<p>//{{ footer_content }}</p>{% endcapture %}
         | 
| 79 | 
            +
                    {% capture footer_newcontent %}<footer>{{ footer_content }}</footer>{% endcapture %}
         | 
| 80 | 
            +
                    {% assign showerify_middle = showerify_middle | replace_first:footer_oldcontent,footer_newcontent %}
         | 
| 81 | 
            +
                {% endif %}
         | 
| 82 | 
            +
                {% assign iteration = iteration | plus:1 %}
         | 
| 83 | 
            +
            {% endfor %}
         | 
| 84 | 
            +
             | 
| 85 | 
            +
            <!-- Code with line-numbers -->
         | 
| 86 | 
            +
            {% if line_numbers %}
         | 
| 87 | 
            +
                {% assign code_blocks = showerify_middle | split:'<pre><code>' %}
         | 
| 88 | 
            +
                {% assign iteration = 0 %}
         | 
| 89 | 
            +
                {% for code_block in code_blocks %}
         | 
| 90 | 
            +
                    {% if iteration > 0 %}
         | 
| 91 | 
            +
                        {% assign code_block_content = code_block | split:'</code></pre>' | first %}
         | 
| 92 | 
            +
                        {% capture code_block_oldcontent %}<pre><code>{{ code_block_content }}</code></pre>{% endcapture %}
         | 
| 93 | 
            +
                        {% assign code_block_newcontent = code_block_oldcontent | newline_to_br | strip_newlines | replace:'<br />','</code><code>' %}
         | 
| 94 | 
            +
                        {% assign code_block_newcontent = code_block_newcontent | replace:'<code></code></pre>','</pre>' %}
         | 
| 95 | 
            +
                        {% assign code_block_newcontent = code_block_newcontent | replace:'<code></code>','<code> </code>' %}
         | 
| 96 | 
            +
                        {% assign showerify_middle = showerify_middle | replace_first:code_block_oldcontent,code_block_newcontent %}
         | 
| 97 | 
            +
                    {% endif %}
         | 
| 98 | 
            +
                    {% assign iteration = iteration | plus:1 %}
         | 
| 99 | 
            +
                {% endfor %}
         | 
| 100 | 
            +
            {% endif %}
         | 
| 101 | 
            +
             | 
| 102 | 
            +
            <!-- Adding .next to list items -->
         | 
| 103 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>...',' class="next">' %}
         | 
| 104 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>…',' class="next">' %}
         | 
| 105 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>…',' class="next">' %}
         | 
| 106 | 
            +
            {% assign showerify_middle = showerify_middle | replace:' class="next"> ',' class="next">' %}
         | 
| 107 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>\...','>...' %}
         | 
| 108 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>\…','>…' %}
         | 
| 109 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'>\…','>…' %}
         | 
| 110 | 
            +
             | 
| 111 | 
            +
            <!-- By default all the simple `<th>` are for cols -->
         | 
| 112 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<th>','<th scope="col">' %}
         | 
| 113 | 
            +
            <!-- And all the td starting/ending with asteriks are row ths -->
         | 
| 114 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<td>* ','<th scope="row">' %}
         | 
| 115 | 
            +
            {% assign showerify_middle = showerify_middle | replace:' *</td>','</th>' %}
         | 
| 116 | 
            +
             | 
| 117 | 
            +
            <!-- Kramdown mailto problem -->
         | 
| 118 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'href="mail:','href="mailto:' %}
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            <!-- Prototype of #3, need to split things here -->
         | 
| 121 | 
            +
            <!-- is there a way to declare <hr/> with classes/attributes? -->
         | 
| 122 | 
            +
            {% assign showerify_middle = showerify_middle | replace:'<hr />','</div></section><section class="slide"><div>' %}
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            {% capture showerify_output %}{{ showerify_middle }}{% endcapture %}
         | 
| 125 | 
            +
            {% endcapture %}
         | 
| @@ -0,0 +1,8 @@ | |
| 1 | 
            +
            <footer class="footer text-center">
         | 
| 2 | 
            +
                <div class="container">
         | 
| 3 | 
            +
                    <small class="copyright">
         | 
| 4 | 
            +
                        Designed with <i class="fas fa-heart"></i> by <a href="https://themes.3rdwavemedia.com/" target="_blank">Xiaoying Riley</a> for developers
         | 
| 5 | 
            +
                        | Last Updated: {{ site.time | date: "%B %-d, %Y" }}
         | 
| 6 | 
            +
                    </small>
         | 
| 7 | 
            +
                </div>
         | 
| 8 | 
            +
            </footer>
         | 
| @@ -0,0 +1,43 @@ | |
| 1 | 
            +
            {% include _utils/common %}
         | 
| 2 | 
            +
            <head>
         | 
| 3 | 
            +
                <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
         | 
| 4 | 
            +
                <!-- Meta -->
         | 
| 5 | 
            +
                <meta charset="utf-8">
         | 
| 6 | 
            +
                <meta http-equiv="X-UA-Compatible" content="IE=edge">
         | 
| 7 | 
            +
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
         | 
| 8 | 
            +
                {% for meta in general.meta %}
         | 
| 9 | 
            +
                    <meta name="{{ meta.name }}" lang="{{ meta.lang }}" xml:lang="{{ meta.lang }}" content="{{ meta.content | strip }}" />
         | 
| 10 | 
            +
                {% endfor %}
         | 
| 11 | 
            +
                {% if page.url == "/404.html" | prepend: {{site.baseurl}} %}
         | 
| 12 | 
            +
                    <meta http-equiv="refresh" content="10; url={{"/" | prepend: site.baseurl }}">
         | 
| 13 | 
            +
                {% endif %}
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                <link rel="shortcut icon" href="{{ "/assets/images/favicon.ico" | prepend: site.baseurl }}">
         | 
| 16 | 
            +
                <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                <!-- FontAwesome JS -->
         | 
| 19 | 
            +
                <script defer="" src="https://use.fontawesome.com/releases/v5.1.1/js/all.js" integrity="sha384-BtvRZcyfv4r0x/phJt9Y9HhnN5ur1Z+kZbKVgzVBAlQZX4jvAuImlIz+bG7TS00a" crossorigin="anonymous"></script>
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                <!-- Global CSS -->
         | 
| 22 | 
            +
                <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                <!-- Plugins CSS -->
         | 
| 25 | 
            +
                <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css">
         | 
| 26 | 
            +
                <link rel="stylesheet" href="{{ "/assets/plugins/prism/prism.css" | prepend: site.baseurl }}">
         | 
| 27 | 
            +
                <link rel="stylesheet" href="{{ "/assets/plugins/elegant_font/css/style.css" | prepend: site.baseurl }}">
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                <!-- Theme CSS -->
         | 
| 30 | 
            +
                <link id="theme-style" rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
         | 
| 33 | 
            +
                <!--[if lt IE 9]>
         | 
| 34 | 
            +
                  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
         | 
| 35 | 
            +
                  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
         | 
| 36 | 
            +
                <![endif]-->
         | 
| 37 | 
            +
                <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
         | 
| 38 | 
            +
                <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                {% if page.highlight or post.highlight %}
         | 
| 41 | 
            +
                <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" integrity="sha256-3YM6A3pH4QFCl9WbSU8oXF5N6W/2ylvW0o2g+Z6TmLQ=" crossorigin="anonymous" />
         | 
| 42 | 
            +
                {% endif %}
         | 
| 43 | 
            +
            </head>
         | 
| @@ -0,0 +1,36 @@ | |
| 1 | 
            +
            {% include _utils/common %}
         | 
| 2 | 
            +
            <header id="header" class="header {% if page.layout == 'landing' %}text-center{% endif %}">
         | 
| 3 | 
            +
                <div class="container">
         | 
| 4 | 
            +
                    <div class="branding">
         | 
| 5 | 
            +
                        <h1 class="logo">
         | 
| 6 | 
            +
                            <a href="{{ general.header.url | default: page.url }}">
         | 
| 7 | 
            +
                                {% if general.header.icon %}
         | 
| 8 | 
            +
                                    <span aria-hidden="true" class="icon {{ general.header.icon }}"></span>
         | 
| 9 | 
            +
                                {% endif %}
         | 
| 10 | 
            +
                                <span class="text-highlight">{{ general.header.title }}</span>
         | 
| 11 | 
            +
                                <span class="text">{{ general.header.subtitle }}</span>
         | 
| 12 | 
            +
                            </a>
         | 
| 13 | 
            +
                        </h1>
         | 
| 14 | 
            +
                    </div>
         | 
| 15 | 
            +
                    {% if page.layout == 'landing' %}
         | 
| 16 | 
            +
                        <div class="tagline">
         | 
| 17 | 
            +
                            {% for tagline in general.header['tagline'] %}
         | 
| 18 | 
            +
                                <p>{{ tagline }}</p>
         | 
| 19 | 
            +
                            {% endfor %}
         | 
| 20 | 
            +
                        </div>
         | 
| 21 | 
            +
                    {% else %}
         | 
| 22 | 
            +
                        <ol class="breadcrumb">
         | 
| 23 | 
            +
                            <li><a href="/{{ site.baseurl }}">Home</a></li>
         | 
| 24 | 
            +
                            {% for resource in resources %}
         | 
| 25 | 
            +
                                {% if resource == "" %}{% continue %}{% endif %}
         | 
| 26 | 
            +
                                {% assign resource_url =  resource_url | append: "/" | append: resource %}
         | 
| 27 | 
            +
                                {% if forloop.last == true %}
         | 
| 28 | 
            +
                                    <li class="active">{{ page.title }}</li>
         | 
| 29 | 
            +
                                {% else %}
         | 
| 30 | 
            +
                                    <li><a href="{{ resource_url }}">{{ resource | capitalize }}</a></li>
         | 
| 31 | 
            +
                                {% endif %}
         | 
| 32 | 
            +
                            {% endfor %}
         | 
| 33 | 
            +
                        </ol>
         | 
| 34 | 
            +
                    {% endif %}
         | 
| 35 | 
            +
                </div>
         | 
| 36 | 
            +
            </header>
         | 
| @@ -0,0 +1,11 @@ | |
| 1 | 
            +
            <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
         | 
| 2 | 
            +
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
         | 
| 3 | 
            +
            <script src="{{ "/assets/plugins/prism/prism.js" | prepend: site.baseurl }}" type="text/javascript"></script>
         | 
| 4 | 
            +
            <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.2/jquery.scrollTo.min.js"></script>
         | 
| 5 | 
            +
            <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
         | 
| 6 | 
            +
            <script src="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.min.js"></script>
         | 
| 7 | 
            +
            <script src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script>
         | 
| 8 | 
            +
            {% if page.highlight or post.highlight %}
         | 
| 9 | 
            +
            <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js" integrity="sha256-/BfiIkHlHoVihZdc6TFuj7MmJ0TWcWsMXkeDFwhi0zw=" crossorigin="anonymous"></script>
         | 
| 10 | 
            +
            <script>hljs.initHighlightingOnLoad();</script>
         | 
| 11 | 
            +
            {% endif %}
         | 
| @@ -0,0 +1,29 @@ | |
| 1 | 
            +
            {% assign groups = page.group | split: '.' %}
         | 
| 2 | 
            +
            {% assign page_data = site.data %}
         | 
| 3 | 
            +
            {% for group in groups %}
         | 
| 4 | 
            +
                {% assign page_data = page_data[group] %}
         | 
| 5 | 
            +
            {% endfor %}
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            {% if page_data.base %}     {% assign general = page_data.base %}
         | 
| 8 | 
            +
            {% else %}                  {% assign general = site.data.default.base %}
         | 
| 9 | 
            +
            {% endif %}
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            {% if page_data.cards %}    {% assign cards = page_data.cards %}
         | 
| 12 | 
            +
            {% else %}                  {% assign cards = site.data.default.cards %}
         | 
| 13 | 
            +
            {% endif %}
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            {% if page_data.faqs %}     {% assign faqs = page_data.faqs %}
         | 
| 16 | 
            +
            {% else %}                  {% assign faqs = site.data.default.faqs %}
         | 
| 17 | 
            +
            {% endif %}
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            {% if page_data.contact %}  {% assign contact = page_data.contact %}
         | 
| 20 | 
            +
            {% else %}                  {% assign contact = site.data.default.contact %}
         | 
| 21 | 
            +
            {% endif %}
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            {% if page_data.timeline %}  {% assign timeline = page_data.timeline %}
         | 
| 24 | 
            +
            {% else %}                   {% assign timeline = site.data.default.timeline %}
         | 
| 25 | 
            +
            {% endif %}
         | 
| 26 | 
            +
             | 
| 27 | 
            +
             | 
| 28 | 
            +
            {% assign resources = page.url | remove: site.url | remove: site.baseurl | split: '/' %}
         | 
| 29 | 
            +
            {% assign resource_url = site.baseurl %}
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            {% assign picture = include.picture %}
         | 
| 2 | 
            +
            {% if include.thumbnail %}  {% assign thumbnail = include.thumbnail %}
         | 
| 3 | 
            +
            {% else %}                  {% assign thumbnail = include.picture %}
         | 
| 4 | 
            +
            {% endif %}
         | 
| 5 | 
            +
            {% if include.class %}      {% assign class = include.class %}
         | 
| 6 | 
            +
            {% else %}                  {% assign class = "img-responsive center-block" %}
         | 
| 7 | 
            +
            {% endif %}
         | 
| 8 | 
            +
            {% if include.icon %}       {% assign icon = include.icon %}
         | 
| 9 | 
            +
            {% else %}                  {% assign icon = "fas fa-search-plus" %}
         | 
| 10 | 
            +
            {% endif %}
         | 
| 11 | 
            +
            <div class="screenshot-holder text-center">
         | 
| 12 | 
            +
                <a href="{{ picture | prepend: site.baseurl }}" data-title="{{ include.title }}" data-toggle="lightbox">
         | 
| 13 | 
            +
                    <img class="{{ class }}" src="{{ thumbnail | prepend: site.baseurl }}" alt="{{ include.title }}">
         | 
| 14 | 
            +
                </a>
         | 
| 15 | 
            +
                <a class="mask" href="{{ picture | prepend: site.baseurl }}" data-title="{{ include.title }}" data-toggle="lightbox">
         | 
| 16 | 
            +
                    <span class="icon {{ icon }}"></span>
         | 
| 17 | 
            +
                </a>
         | 
| 18 | 
            +
            </div>
         | 
| @@ -0,0 +1,9 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            # Jekyll layout that compresses HTML
         | 
| 3 | 
            +
            # v3.0.2
         | 
| 4 | 
            +
            # http://jch.penibelst.de/
         | 
| 5 | 
            +
            # © 2014–2015 Anatol Broder
         | 
| 6 | 
            +
            # MIT License
         | 
| 7 | 
            +
            ---
         | 
| 8 | 
            +
            {% capture _LINE_FEED %}
         | 
| 9 | 
            +
            {% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            layout: compress
         | 
| 3 | 
            +
            ---
         | 
| 4 | 
            +
            {% if page.color %}{% capture body_class %}class="body-{{ page.color }}"{% endcapture %}{% endif %}
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            <!DOCTYPE html>
         | 
| 7 | 
            +
            <!--[if IE 8]> <html lang="{{ site.lang }}" class="ie8"> <![endif]-->
         | 
| 8 | 
            +
            <!--[if IE 9]> <html lang="{{ site.lang }}" class="ie9"> <![endif]-->
         | 
| 9 | 
            +
            <!--[if !IE]><!--> <html lang="{{ site.lang }}"> <!--<![endif]-->
         | 
| 10 | 
            +
                {% include _theme/head.html %}
         | 
| 11 | 
            +
                <body {{ body_class }}>
         | 
| 12 | 
            +
                    <div class="page-wrapper">
         | 
| 13 | 
            +
                        {% include _theme/header.html %}
         | 
| 14 | 
            +
                        {{ content }}
         | 
| 15 | 
            +
                    </div>
         | 
| 16 | 
            +
                    {% unless site.paid %}{% include _theme/footer.html %}{% endunless %}
         | 
| 17 | 
            +
                    {% include _theme/js.html %}
         | 
| 18 | 
            +
                </body>
         | 
| 19 | 
            +
            </html>
         |