From dc0b7777e3e2252ea4e65198d61e2f1fa9b811bb Mon Sep 17 00:00:00 2001 From: qinwf Date: Sat, 21 May 2016 12:06:34 +0800 Subject: [PATCH] init --- .gitignore | 42 +++ 404.html | 10 + CNAME | 1 + README.md | 2 + _config.yml | 36 +++ _includes/head.html | 20 ++ _layouts/default.html | 53 ++++ _layouts/page.html | 8 + _layouts/post.html | 25 ++ _posts/2016-5-21-issue-1.md | 52 ++++ _sass/_base.scss | 78 ++++++ _sass/_code.scss | 78 ++++++ _sass/_layout.scss | 15 + _sass/_masthead.scss | 25 ++ _sass/_message.scss | 11 + _sass/_pagination.scss | 51 ++++ _sass/_posts.scss | 67 +++++ _sass/_syntax.scss | 65 +++++ _sass/_type.scss | 117 ++++++++ _sass/_variables.scss | 30 ++ about.md | 11 + archive.md | 10 + atom.xml | 28 ++ index.html | 33 +++ public/apple-touch-icon-precomposed.png | Bin 0 -> 29257 bytes public/favicon.ico | Bin 0 -> 5430 bytes share-button.min.css | 356 ++++++++++++++++++++++++ share-button.min.js | 1 + styles.scss | 29 ++ 29 files changed, 1254 insertions(+) create mode 100644 .gitignore create mode 100644 404.html create mode 100644 CNAME create mode 100644 README.md create mode 100644 _config.yml create mode 100644 _includes/head.html create mode 100644 _layouts/default.html create mode 100644 _layouts/page.html create mode 100644 _layouts/post.html create mode 100644 _posts/2016-5-21-issue-1.md create mode 100644 _sass/_base.scss create mode 100644 _sass/_code.scss create mode 100644 _sass/_layout.scss create mode 100644 _sass/_masthead.scss create mode 100644 _sass/_message.scss create mode 100644 _sass/_pagination.scss create mode 100644 _sass/_posts.scss create mode 100644 _sass/_syntax.scss create mode 100644 _sass/_type.scss create mode 100644 _sass/_variables.scss create mode 100644 about.md create mode 100644 archive.md create mode 100644 atom.xml create mode 100644 index.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/favicon.ico create mode 100644 share-button.min.css create mode 100644 share-button.min.js create mode 100644 styles.scss diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..33c0adbab --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Ignore docs files +_gh_pages +_site +.ruby-version +.sass-cache + +# Numerous always-ignore extensions +*.diff +*.err +*.orig +*.log +*.rej +*.swo +*.swp +*.zip +*.vi +*~ + +# OS or Editor folders +.DS_Store +._* +Thumbs.db +.cache +.project +.settings +.tmproj +*.esproj +nbproject +*.sublime-project +*.sublime-workspace +.idea + +# Komodo +*.komodoproject +.komodotools + +# grunt-html-validation +validation-status.json +validation-report.json + +# Folders to ignore +node_modules diff --git a/404.html b/404.html new file mode 100644 index 000000000..4bf3f7d8f --- /dev/null +++ b/404.html @@ -0,0 +1,10 @@ +--- +layout: default +title: "404: Page not found" +permalink: 404.html +--- + +
+

404: Page not found

+

Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.

+
diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..ba4b3fa8d --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +rweekly.org diff --git a/README.md b/README.md new file mode 100644 index 000000000..45422fb1b --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# R Weekly + diff --git a/_config.yml b/_config.yml new file mode 100644 index 000000000..92907f878 --- /dev/null +++ b/_config.yml @@ -0,0 +1,36 @@ +# Permalinks +permalink: /:year-:month-:day-:title.html + +# Setup +title: RWeekly.org +url: rweekly.org +paginate: 1 +baseurl: "" + +# Assets +# +# We specify the directory for Jekyll so we can use @imports. +sass: + sass_dir: _sass + style: :compressed + +# About/contact +author: + name: R Weekly + url: + email: + +# Custom vars +version: 2.0.0 +github: + repo: https://github.com/rweekly/rweekly.org + +# Gems +gems: + - jekyll-paginate + - jekyll-gist + +pages_list: + About: '/about/' + Archive: '/archive/' + Feed: '/atom.xml' \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 000000000..3b402e979 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,20 @@ + + + + + + {% if page.title == "Home" %} + {{ site.title }} · {{ site.tagline }} + {% else %} + {{ page.title }} · {{ site.title }} + {% endif %} + + + + + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 000000000..929d55920 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,53 @@ + + + + {% include head.html %} + + +
+
+

+ {{ site.title }} + {% for page in site.pages_list %} +    {{ page[0] }} + {% endfor %} +    Share +

+
+ +
+ {{ content }} +
+ +
+ + © . All rights reserved. + +
+
+ + + + + + diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 000000000..960f76780 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,8 @@ +--- +layout: default +--- + +
+

{{ page.title }}

+ {{ content }} +
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 000000000..c802d09cb --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,25 @@ +--- +layout: default +--- + +
+

{{ page.title }}

+ + {{ content }} +
+ +{% if site.related_posts != empty %} + +{% endif %} diff --git a/_posts/2016-5-21-issue-1.md b/_posts/2016-5-21-issue-1.md new file mode 100644 index 000000000..365b638d4 --- /dev/null +++ b/_posts/2016-5-21-issue-1.md @@ -0,0 +1,52 @@ +--- +layout: post +title: Issue 1 +--- + +Hello and welcome to the new issue of **R Weekly**! + +## R Community Updates + +### News & Blog Posts + + + +### New Packages & Tools + + + +## R Project Updates + +R project Updates + +## Call for Participation + +Always wanted to contribute to open-source projects but didn't know where to start? +Every week we highlight some tasks from the R community for you to pick and get started! + +Some of these tasks may also have mentors available, visit the task page for more information. + +* [easy] [ ]() + +If you are an R project owner and are looking for contributors, please submit tasks [here](). + + +## Upcoming Events + + +## Jobs + +*No jobs listed for this week.* + +## Quote of the Week + +*No quote was selected for QotW.* + + +[R](https://www.r-project.org/) is a free software environment for statistical computing and graphics. + +**R Weekly** is openly developed [on GitHub](https://github.com/rweekly/rweekly.org). + +If you find any errors in this week's issue, [please submit a PR](https://github.com/rweekly/rweekly.org/pulls). + +This week's edition was edited by: [todo](https://github.com/). \ No newline at end of file diff --git a/_sass/_base.scss b/_sass/_base.scss new file mode 100644 index 000000000..724067ac6 --- /dev/null +++ b/_sass/_base.scss @@ -0,0 +1,78 @@ +// Body resets +// +// Update the foundational and global aspects of the page. + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +html, +body { + margin: 0; + padding: 0; +} + +html { + font-family: $root-font-family; + font-size: $root-font-size; + line-height: $root-line-height; + + @media (min-width: $large-breakpoint) { + font-size: $large-font-size; + } +} + +body { + color: $body-color; + background-color: $body-bg; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +// No `:visited` state is required by default (browsers will use `a`) +a { + color: $link-color; + text-decoration: none; + + // `:focus` is linked to `:hover` for basic accessibility + &:hover, + &:focus { + text-decoration: underline; + } + + strong { + color: inherit; + } +} + +img { + display: block; + max-width: 100%; + margin: 0 0 1rem; + border-radius: 5px; +} + +table { + margin-bottom: 1rem; + width: 100%; + font-size: 85%; + border: 1px solid #e5e5e5; + border-collapse: collapse; +} + +td, +th { + padding: .25rem .5rem; + border: 1px solid #e5e5e5; +} + +th { + text-align: left; +} + +tbody tr:nth-child(odd) td, +tbody tr:nth-child(odd) th { + background-color: #f9f9f9; +} diff --git a/_sass/_code.scss b/_sass/_code.scss new file mode 100644 index 000000000..775cc527e --- /dev/null +++ b/_sass/_code.scss @@ -0,0 +1,78 @@ +// Code +// +// Inline and block-level code snippets. Includes tweaks to syntax highlighted +// snippets from Pygments/Rouge and Gist embeds. + +code, +pre { + font-family: $code-font-family; +} + +code { + padding: .25em .5em; + font-size: 85%; + color: $code-color; + background-color: #f9f9f9; + border-radius: 3px; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; +} + +pre code { + padding: 0; + font-size: 100%; + color: inherit; + background-color: transparent; +} + +// Pygments via Jekyll +.highlight { + padding: 1rem; + margin-bottom: 1rem; + font-size: .8rem; + line-height: 1.4; + background-color: #f9f9f9; + border-radius: .25rem; + + pre { + margin-bottom: 0; + overflow-x: auto; + } + + .lineno { + display: inline-block; // Ensures the null space also isn't selectable + padding-right: .75rem; + padding-left: .25rem; + color: #999; + // Make sure numbers aren't selectable + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + } +} + + +// Gist via GitHub Pages +// .gist .gist-file { +// font-family: Menlo, Monaco, "Courier New", monospace !important; +// } +// .gist .markdown-body { +// padding: 15px; +// } +// .gist pre { +// padding: 0; +// background-color: transparent; +// } +// .gist .gist-file .gist-data { +// font-size: .8rem !important; +// line-height: 1.4; +// } +// .gist code { +// padding: 0; +// color: inherit; +// background-color: transparent; +// border-radius: 0; +// } diff --git a/_sass/_layout.scss b/_sass/_layout.scss new file mode 100644 index 000000000..2a272698b --- /dev/null +++ b/_sass/_layout.scss @@ -0,0 +1,15 @@ +// Layout +// +// Styles for managing the structural hierarchy of the site. + +.container { + max-width: 38rem; + padding-left: 1.5rem; + padding-right: 1.5rem; + margin-left: auto; + margin-right: auto; +} + +footer { + margin-bottom: 2rem; +} diff --git a/_sass/_masthead.scss b/_sass/_masthead.scss new file mode 100644 index 000000000..29d406eb4 --- /dev/null +++ b/_sass/_masthead.scss @@ -0,0 +1,25 @@ +// Masthead +// +// Super small header above the content for site name and short description. + +.masthead { + padding-top: 1rem; + padding-bottom: 1rem; + margin-bottom: 3rem; +} + +.masthead-title { + margin-top: 0; + margin-bottom: 0; + color: $gray-4; + + a { + color: inherit; + } + + small { + font-size: 75%; + font-weight: 400; + opacity: .5; + } +} diff --git a/_sass/_message.scss b/_sass/_message.scss new file mode 100644 index 000000000..42bf2e5b6 --- /dev/null +++ b/_sass/_message.scss @@ -0,0 +1,11 @@ +// Messages +// +// Show alert messages to users. You may add it to single elements like a `

`, +// or to a parent if there are multiple elements to show. + +.message { + margin-bottom: 1rem; + padding: 1rem; + color: #717171; + background-color: #f9f9f9; +} diff --git a/_sass/_pagination.scss b/_sass/_pagination.scss new file mode 100644 index 000000000..5ef8f9054 --- /dev/null +++ b/_sass/_pagination.scss @@ -0,0 +1,51 @@ +// Pagination +// +// Super lightweight (HTML-wise) blog pagination. `span`s are provide for when +// there are no more previous or next posts to show. + +.pagination { + overflow: hidden; // clearfix + margin: 0 -1.5rem 1rem; + color: #ccc; + text-align: center; +} + +// Pagination items can be `span`s or `a`s +.pagination-item { + display: block; + padding: 1rem; + border: solid #eee; + border-width: 1px 0; + + &:first-child { + margin-bottom: -1px; + } +} + +// Only provide a hover state for linked pagination items +a.pagination-item:hover { + background-color: #f5f5f5; +} + +@media (min-width: 30em) { + .pagination { + margin: 3rem 0; + } + + .pagination-item { + float: left; + width: 50%; + border-width: 1px; + + &:first-child { + margin-bottom: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + } + &:last-child { + margin-left: -1px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + } + } +} diff --git a/_sass/_posts.scss b/_sass/_posts.scss new file mode 100644 index 000000000..c6af60176 --- /dev/null +++ b/_sass/_posts.scss @@ -0,0 +1,67 @@ +// Posts and pages +// +// Each post is wrapped in `.post` and is used on default and post layouts. Each +// page is wrapped in `.page` and is only used on the page layout. + +.page, +.post { + margin-bottom: 4em; + + li + li { + margin-top: .25rem; + } +} + +// Blog post or page title +.page-title, +.post-title, +.post-title a { + color: #303030; +} +.page-title, +.post-title { + margin-top: 0; +} + +// Meta data line below post title +.post-date { + display: block; + margin-top: -.5rem; + margin-bottom: 1rem; + color: #9a9a9a; +} + + +// Related posts +.related { + padding-top: 2rem; + padding-bottom: 2rem; + margin-bottom: 2rem; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; +} + +.related-posts { + padding-left: 0; + list-style: none; + + h3 { + margin-top: 0; + } + + li { + small { + font-size: 75%; + color: #999; + } + + a:hover { + color: #268bd2; + text-decoration: none; + + small { + color: inherit; + } + } + } +} diff --git a/_sass/_syntax.scss b/_sass/_syntax.scss new file mode 100644 index 000000000..15ad79771 --- /dev/null +++ b/_sass/_syntax.scss @@ -0,0 +1,65 @@ +.highlight .hll { background-color: #ffc; } +.highlight .c { color: #999; } /* Comment */ +.highlight .err { color: #a00; background-color: #faa } /* Error */ +.highlight .k { color: #069; } /* Keyword */ +.highlight .o { color: #555 } /* Operator */ +.highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #099 } /* Comment.Preproc */ +.highlight .c1 { color: #999; } /* Comment.Single */ +.highlight .cs { color: #999; } /* Comment.Special */ +.highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #f00 } /* Generic.Error */ +.highlight .gh { color: #030; } /* Generic.Heading */ +.highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */ +.highlight .go { color: #aaa } /* Generic.Output */ +.highlight .gp { color: #009; } /* Generic.Prompt */ +.highlight .gs { } /* Generic.Strong */ +.highlight .gu { color: #030; } /* Generic.Subheading */ +.highlight .gt { color: #9c6 } /* Generic.Traceback */ +.highlight .kc { color: #069; } /* Keyword.Constant */ +.highlight .kd { color: #069; } /* Keyword.Declaration */ +.highlight .kn { color: #069; } /* Keyword.Namespace */ +.highlight .kp { color: #069 } /* Keyword.Pseudo */ +.highlight .kr { color: #069; } /* Keyword.Reserved */ +.highlight .kt { color: #078; } /* Keyword.Type */ +.highlight .m { color: #f60 } /* Literal.Number */ +.highlight .s { color: #d44950 } /* Literal.String */ +.highlight .na { color: #4f9fcf } /* Name.Attribute */ +.highlight .nb { color: #366 } /* Name.Builtin */ +.highlight .nc { color: #0a8; } /* Name.Class */ +.highlight .no { color: #360 } /* Name.Constant */ +.highlight .nd { color: #99f } /* Name.Decorator */ +.highlight .ni { color: #999; } /* Name.Entity */ +.highlight .ne { color: #c00; } /* Name.Exception */ +.highlight .nf { color: #c0f } /* Name.Function */ +.highlight .nl { color: #99f } /* Name.Label */ +.highlight .nn { color: #0cf; } /* Name.Namespace */ +.highlight .nt { color: #2f6f9f; } /* Name.Tag */ +.highlight .nv { color: #033 } /* Name.Variable */ +.highlight .ow { color: #000; } /* Operator.Word */ +.highlight .w { color: #bbb } /* Text.Whitespace */ +.highlight .mf { color: #f60 } /* Literal.Number.Float */ +.highlight .mh { color: #f60 } /* Literal.Number.Hex */ +.highlight .mi { color: #f60 } /* Literal.Number.Integer */ +.highlight .mo { color: #f60 } /* Literal.Number.Oct */ +.highlight .sb { color: #c30 } /* Literal.String.Backtick */ +.highlight .sc { color: #c30 } /* Literal.String.Char */ +.highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #c30 } /* Literal.String.Double */ +.highlight .se { color: #c30; } /* Literal.String.Escape */ +.highlight .sh { color: #c30 } /* Literal.String.Heredoc */ +.highlight .si { color: #a00 } /* Literal.String.Interpol */ +.highlight .sx { color: #c30 } /* Literal.String.Other */ +.highlight .sr { color: #3aa } /* Literal.String.Regex */ +.highlight .s1 { color: #c30 } /* Literal.String.Single */ +.highlight .ss { color: #fc3 } /* Literal.String.Symbol */ +.highlight .bp { color: #366 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #033 } /* Name.Variable.Class */ +.highlight .vg { color: #033 } /* Name.Variable.Global */ +.highlight .vi { color: #033 } /* Name.Variable.Instance */ +.highlight .il { color: #f60 } /* Literal.Number.Integer.Long */ + +.css .o, +.css .o + .nt, +.css .nt + .nt { color: #999; } diff --git a/_sass/_type.scss b/_sass/_type.scss new file mode 100644 index 000000000..7b0664af1 --- /dev/null +++ b/_sass/_type.scss @@ -0,0 +1,117 @@ +// Typography +// +// Headings, body text, lists, and other misc typographic elements. + +h1, h2, h3, h4, h5, h6 { + margin-bottom: .5rem; + font-weight: 600; + line-height: 1.25; + color: #313131; + text-rendering: optimizeLegibility; +} + +h1 { + font-size: 2rem; +} + +h2 { + margin-top: 1rem; + font-size: 1.5rem; +} + +h3 { + margin-top: 1.5rem; + font-size: 1rem; +} + +h4, h5, h6 { + margin-top: 1rem; + font-size: 1rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +strong { + color: #303030; +} + +ul, ol, dl { + margin-top: 0; + margin-bottom: 1rem; +} + +dt { + font-weight: bold; +} + +dd { + margin-bottom: .5rem; +} + +hr { + position: relative; + margin: 1.5rem 0; + border: 0; + border-top: 1px solid #eee; + border-bottom: 1px solid #fff; +} + +abbr { + font-size: 85%; + font-weight: bold; + color: #555; + text-transform: uppercase; + + &[title] { + cursor: help; + border-bottom: 1px dotted #e5e5e5; + } +} + +blockquote { + padding: .5rem 1rem; + margin: .8rem 0; + color: #7a7a7a; + border-left: .25rem solid #e5e5e5; + + p:last-child { + margin-bottom: 0; + } + + @media (min-width: 30em) { + padding-right: 5rem; + padding-left: 1.25rem; + } +} + + +// Markdown footnotes +// +// See the example content post for an example. + +// Footnote number within body text +a[href^="#fn:"], +// Back to footnote link +a[href^="#fnref:"] { + display: inline-block; + margin-left: .1rem; + font-weight: bold; +} + +// List of footnotes +.footnotes { + margin-top: 2rem; + font-size: 85%; +} + +// Custom type +// +// Extend paragraphs with `.lead` for larger introductory text. + +.lead { + font-size: 1.25rem; + font-weight: 300; +} diff --git a/_sass/_variables.scss b/_sass/_variables.scss new file mode 100644 index 000000000..3e0aa4060 --- /dev/null +++ b/_sass/_variables.scss @@ -0,0 +1,30 @@ +$gray-1: #f9f9f9; +$gray-2: #ccc; +$gray-3: #767676; +$gray-4: #515151; +$gray-5: #313131; + +$red: #ac4142; +$orange: #d28445; +$yellow: #f4bf75; +$green: #90a959; +$cyan: #75b5aa; +$blue: #268bd2; +// $blue: #6a9fb5; +$brown: #8f5536; + +$root-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; +$root-font-size: 16px; +$root-line-height: 1.5; + +$body-color: #515151; +$body-bg: #fff; +$link-color: $blue; + +$border-color: #e5e5e5; + +$large-breakpoint: 38em; +$large-font-size: 20px; + +$code-font-family: Menlo, Monaco, "Courier New", monospace; +$code-color: #bf616a; diff --git a/about.md b/about.md new file mode 100644 index 000000000..928de9d45 --- /dev/null +++ b/about.md @@ -0,0 +1,11 @@ +--- +layout: page +title: About +--- + +

+ Hey there! This page is included as an example. Feel free to customize it for your own use upon downloading. Carry on! +

+ + +Thanks for reading! diff --git a/archive.md b/archive.md new file mode 100644 index 000000000..ad3188a13 --- /dev/null +++ b/archive.md @@ -0,0 +1,10 @@ +--- +layout: page +title: Archive +--- + +## Blog Posts + +{% for post in site.posts %} + * {{ post.date | date_to_string }} » [ {{ post.title }} ]({{ post.url }}) +{% endfor %} \ No newline at end of file diff --git a/atom.xml b/atom.xml new file mode 100644 index 000000000..0a9e2645e --- /dev/null +++ b/atom.xml @@ -0,0 +1,28 @@ +--- +layout: null +--- + + + + + {{ site.title }} + + + {{ site.time | date_to_xmlschema }} + {{ site.url }} + + {{ site.author.name }} + {{ site.author.email }} + + + {% for post in site.posts %} + + {{ post.title | xml_escape }} + + {{ post.date | date_to_xmlschema }} + {{ site.url }}{{ post.id }} + {{ post.content | xml_escape }} + + {% endfor %} + + diff --git a/index.html b/index.html new file mode 100644 index 000000000..012502c82 --- /dev/null +++ b/index.html @@ -0,0 +1,33 @@ +--- +layout: default +title: Home +--- + +
+ {% for post in paginator.posts %} + + {% endfor %} +
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 0000000000000000000000000000000000000000..51ce42698128a7c895b266bb819b6b739ef737aa GIT binary patch literal 29257 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 D^^xnr literal 0 HcmV?d00001 diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..3e00498f3bac1ff4e5cae3c6b0e442d69ebe48bf GIT binary patch literal 5430 zcmeHL32ao?6@9@j1`4*55HQ|>;F7eJP@+@`Ndq)$q!bEClR#{b_m#y2l8Q}LNFgE! zRW>Gu@xIKyZ-4$e^Ou>ygc#Bi(xNm{8n-lY7TQ83TGJwK?;A75OhyP=sa2&s>FWRg z{=e^@Iq$x^3?X-sX(T(F;I)`ErxQ{_2q`X}c(&nuE6y#&IlRR$Cg$-%2+sevMyPz| z3btWkH&b7%=PNQFO4#*Qo`Of0;YzKDWlPb$KUS zngPD5`QRh{n@xMPvUCX5=L56t(RQwJu_RVx0J?kWnjq!{=iSDE*;V8%uUMX5(qah0;ze?Yhu&Fl|n<&A+BjL zsLv5_>|A@eW57G4NW$MkJO@IM0ZvrzozNyE(p1!>Ze9Y)ru*p{FVcCbvA9w|3{u56 zfoWc9>Kt&g5jk{04G9nyI1okg)r5Yue*O-vWhtnLLD{qf!W$QZv~dXt_^hrafAZ{k zwz55-OLenJ<%dRA_w@E zWy{SL_iu)VEau^eI^#qvayF(ZfLK5gd5~hKIoa60L4D(;`~)81U`;x|zw|+Ne|@dZ z!+&gX1wXa+_hiubCyqyEy&a3#5DP?<5NHw$q2XVFc=Ft3?)aJC2cz$O6p-J!;+0Q< zJA4{E4yWia4#ss8>tA2z$>FGWET$?SMr0Ak8~l zZGLU4ALgyjU4wDiiLt%cjpC}9--9vUi!pv@s_$=Sj&EG}8QKRbhyl<(U_SAs(nb4c zy_gqhZb19-{D2rRN6h`q)>KAGe=`p&z+YPc{+hfA z4yyCOQ=NO@R<;uF9A;Cd-DqgB4h@~O3=V*KU;vDRLojG`0KfGikSj9*a~B9`KU_W? zT)WnRzTW|z`hMu>v4X#`1h|SU2-N1IeJXhnsJQzN0bMpms#_12)zX6Y#~dajVD1N- z!2pN@D2_op3*0M@fl@ge?PK0W4035YxOc9WTbU1Qk60rcojcZ?55GvzCl|);2hcy+ zvf03tXFql;%RZ;0(BrVF9=i?PRx3CyW^kHK;4qoMPBEBmZyW4Pli2dzcjTITK%zOf zu^6PfTtI*9v%axqj`!77PfKMpKEZPdROs2@%V+(=_R2Hx){*XE{h>GWQej}c?xlX0 za||(n&uIs*-43*FnZRNCwZmjso6w7tr^iB=vqSjXCAtUA_k)D>jJkn9ST_@WvKUw@ z^@yQ1_m5)fj30J%8fP7{kGy~Ea65Fg>uG5^IrxBoF5~rF2zuRsH52$TaRDmf)%-I5Xm?uURffuSfKBZA0%%aQ z7~)(|49v3$d&$?heXN0#FmQscm0Q zufYui`eS2JMV4rNtcE2}5d+r!aV{tZ>><9=M^XFHEhQs}0g#8=!$8l&#u5l&kA=Nk z-hhp780zbX!LBY3*5{QmO~(2fYke6pOyL4Cd=e7aLTYpBh_*cNIbwj@!hmr~YAObK z!?X*^^W+I<`)hNCtbuW3Z!Z{nd)6J-l)JFL{~hfUXut6lE(HG55FdPIs{Iq|$)Q+t zfg{#jXpS}&m?Mq(W(`Gc%rmPEd1j>{*DN;{nw6?7yZQp@l*?z9Q+-G8TXT(G<-B#E z4@~|2?lz7xPNW@s$akJH1-@ksTHv_OCmg_9rbm4d!!M6Ycj?{iI`iiL4I(gJo< zZou5P+~en(?eZDBGoV~?SuEhh9@uF%gUx8TiO+;S+W!IeY-8BF#kq*axxl`Qa)Etd z{EQ^dsU(AlB8Z_cIU)2R$BE~HtoYktkpGNf*sFeq2fxPyKDz~TnH4-Vm)WeNm{Xrf z*h_Uq`#C7q6SyAr%YTL^nw8ZRbdRsiC$6Y~g5W4M>*5!dy6=A`+o z4|Cbwscfd2LoOc2JuwVN)ywFkxF6InZg4@*YM7o?#4vGIX$)t8_WYPnft|qdSInt> zez)u2?h(;1=OKn#>^*zXKi@+ff1AXCenI1fO#PGM;MmI;x6WWs+l?5iSig7je}h!N z@lNN^{)1@$$9PURX-cRSW5p20Z~9-wFOY|3a;)s.call(e,i=r[a++])&&t.push(i);return t}},{"./$":22}],10:[function(e,t,n){t.exports=function(e){try{return!!e()}catch(t){return!0}}},{}],11:[function(e,t,n){var o={}.toString,i=e("./$.to-iobject"),r=e("./$").getNames,s="object"==typeof window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(e){try{return r(e)}catch(t){return s.slice()}};t.exports.get=function(e){return s&&"[object Window]"==o.call(e)?a(e):r(i(e))}},{"./$":22,"./$.to-iobject":30}],12:[function(e,t,n){var o=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=o)},{}],13:[function(e,t,n){var o={}.hasOwnProperty;t.exports=function(e,t){return o.call(e,t)}},{}],14:[function(e,t,n){var o=e("./$"),i=e("./$.property-desc");t.exports=e("./$.support-desc")?function(e,t,n){return o.setDesc(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},{"./$":22,"./$.property-desc":25,"./$.support-desc":28}],15:[function(e,t,n){var o=e("./$.cof");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==o(e)?e.split(""):Object(e)}},{"./$.cof":5}],16:[function(e,t,n){var o=e("./$.cof");t.exports=Array.isArray||function(e){return"Array"==o(e)}},{"./$.cof":5}],17:[function(e,t,n){t.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},{}],18:[function(e,t,n){"use strict";var o=e("./$"),i={};e("./$.hide")(i,e("./$.wks")("iterator"),function(){return this}),t.exports=function(t,n,r){t.prototype=o.create(i,{next:e("./$.property-desc")(1,r)}),e("./$.tag")(t,n+" Iterator")}},{"./$":22,"./$.hide":14,"./$.property-desc":25,"./$.tag":29,"./$.wks":33}],19:[function(e,t,n){"use strict";var o=e("./$.library"),i=e("./$.def"),r=e("./$.redef"),s=e("./$.hide"),a=e("./$.has"),c=e("./$.wks")("iterator"),u=e("./$.iterators"),l=!([].keys&&"next"in[].keys()),f="@@iterator",d="keys",h="values",p=function(){return this};t.exports=function(t,n,g,y,m,v,b){e("./$.iter-create")(g,n,y);var k,w,$=function(e){switch(e){case d:return function(){return new g(this,e)};case h:return function(){return new g(this,e)}}return function(){return new g(this,e)}},_=n+" Iterator",S=t.prototype,j=S[c]||S[f]||m&&S[m],x=j||$(m);if(j){var O=e("./$").getProto(x.call(new t));e("./$.tag")(O,_,!0),!o&&a(S,f)&&s(O,c,p)}if((!o||b)&&s(S,c,x),u[n]=x,u[_]=p,m)if(k={values:m==h?x:$(h),keys:v?x:$(d),entries:m!=h?x:$("entries")},b)for(w in k)w in S||r(S,w,k[w]);else i(i.P+i.F*l,n,k)}},{"./$":22,"./$.def":7,"./$.has":13,"./$.hide":14,"./$.iter-create":18,"./$.iterators":21,"./$.library":24,"./$.redef":26,"./$.tag":29,"./$.wks":33}],20:[function(e,t,n){t.exports=function(e,t){return{value:t,done:!!e}}},{}],21:[function(e,t,n){t.exports={}},{}],22:[function(e,t,n){var o=Object;t.exports={create:o.create,getProto:o.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:o.getOwnPropertyDescriptor,setDesc:o.defineProperty,setDescs:o.defineProperties,getKeys:o.keys,getNames:o.getOwnPropertyNames,getSymbols:o.getOwnPropertySymbols,each:[].forEach}},{}],23:[function(e,t,n){var o=e("./$"),i=e("./$.to-iobject");t.exports=function(e,t){for(var n,r=i(e),s=o.getKeys(r),a=s.length,c=0;a>c;)if(r[n=s[c++]]===t)return n}},{"./$":22,"./$.to-iobject":30}],24:[function(e,t,n){t.exports=!1},{}],25:[function(e,t,n){t.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},{}],26:[function(e,t,n){var o=e("./$.global"),i=e("./$.hide"),r=e("./$.uid")("src"),s="toString",a=Function[s],c=(""+a).split(s);e("./$.core").inspectSource=function(e){return a.call(e)},(t.exports=function(e,t,n,s){"function"==typeof n&&(n.hasOwnProperty(r)||i(n,r,e[t]?""+e[t]:c.join(String(t))),n.hasOwnProperty("name")||i(n,"name",t)),e===o?e[t]=n:(s||delete e[t],i(e,t,n))})(Function.prototype,s,function(){return"function"==typeof this&&this[r]||a.call(this)})},{"./$.core":6,"./$.global":12,"./$.hide":14,"./$.uid":31}],27:[function(e,t,n){var o=e("./$.global"),i="__core-js_shared__",r=o[i]||(o[i]={});t.exports=function(e){return r[e]||(r[e]={})}},{"./$.global":12}],28:[function(e,t,n){t.exports=!e("./$.fails")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},{"./$.fails":10}],29:[function(e,t,n){var o=e("./$").setDesc,i=e("./$.has"),r=e("./$.wks")("toStringTag");t.exports=function(e,t,n){e&&!i(e=n?e:e.prototype,r)&&o(e,r,{configurable:!0,value:t})}},{"./$":22,"./$.has":13,"./$.wks":33}],30:[function(e,t,n){var o=e("./$.iobject"),i=e("./$.defined");t.exports=function(e){return o(i(e))}},{"./$.defined":8,"./$.iobject":15}],31:[function(e,t,n){var o=0,i=Math.random();t.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++o+i).toString(36))}},{}],32:[function(e,t,n){var o=e("./$.wks")("unscopables");void 0==[][o]&&e("./$.hide")(Array.prototype,o,{}),t.exports=function(e){[][o][e]=!0}},{"./$.hide":14,"./$.wks":33}],33:[function(e,t,n){var o=e("./$.shared")("wks"),i=e("./$.global").Symbol;t.exports=function(t){return o[t]||(o[t]=i&&i[t]||(i||e("./$.uid"))("Symbol."+t))}},{"./$.global":12,"./$.shared":27,"./$.uid":31}],34:[function(e,t,n){"use strict";var o=e("./$.unscope"),i=e("./$.iter-step"),r=e("./$.iterators"),s=e("./$.to-iobject");e("./$.iter-define")(Array,"Array",function(e,t){this._t=s(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,i(1)):"keys"==t?i(0,n):"values"==t?i(0,e[n]):i(0,[n,e[n]])},"values"),r.Arguments=r.Array,o("keys"),o("values"),o("entries")},{"./$.iter-define":19,"./$.iter-step":20,"./$.iterators":21,"./$.to-iobject":30,"./$.unscope":32}],35:[function(e,t,n){var o=e("./$.def");o(o.S,"Math",{trunc:function(e){return(e>0?Math.floor:Math.ceil)(e)}})},{"./$.def":7}],36:[function(e,t,n){"use strict";var o=e("./$"),i=e("./$.global"),r=e("./$.has"),s=e("./$.support-desc"),a=e("./$.def"),c=e("./$.redef"),u=e("./$.fails"),l=e("./$.shared"),f=e("./$.tag"),d=e("./$.uid"),h=e("./$.wks"),p=e("./$.keyof"),g=e("./$.get-names"),y=e("./$.enum-keys"),m=e("./$.is-array"),v=e("./$.an-object"),b=e("./$.to-iobject"),k=e("./$.property-desc"),w=o.getDesc,$=o.setDesc,_=o.create,S=g.get,j=i.Symbol,x=i.JSON,O=x&&x.stringify,C=!1,P=h("_hidden"),L=o.isEnum,E=l("symbol-registry"),F=l("symbols"),A="function"==typeof j,I=Object.prototype,N=s&&u(function(){return 7!=_($({},"a",{get:function(){return $(this,"a",{value:7}).a}})).a})?function(e,t,n){var o=w(I,t);o&&delete I[t],$(e,t,n),o&&e!==I&&$(I,t,o)}:$,T=function(e){var t=F[e]=_(j.prototype);return t._k=e,s&&C&&N(I,e,{configurable:!0,set:function(t){r(this,P)&&r(this[P],e)&&(this[P][e]=!1),N(this,e,k(1,t))}}),t},B=function(e){return"symbol"==typeof e},D=function(e,t,n){return n&&r(F,t)?(n.enumerable?(r(e,P)&&e[P][t]&&(e[P][t]=!1),n=_(n,{enumerable:k(0,!1)})):(r(e,P)||$(e,P,k(1,{})),e[P][t]=!0),N(e,t,n)):$(e,t,n)},M=function(e,t){v(e);for(var n,o=y(t=b(t)),i=0,r=o.length;r>i;)D(e,n=o[i++],t[n]);return e},H=function(e,t){return void 0===t?_(e):M(_(e),t)},q=function(e){var t=L.call(this,e);return t||!r(this,e)||!r(F,e)||r(this,P)&&this[P][e]?t:!0},W=function(e,t){var n=w(e=b(e),t);return!n||!r(F,t)||r(e,P)&&e[P][t]||(n.enumerable=!0),n},z=function(e){for(var t,n=S(b(e)),o=[],i=0;n.length>i;)r(F,t=n[i++])||t==P||o.push(t);return o},U=function(e){for(var t,n=S(b(e)),o=[],i=0;n.length>i;)r(F,t=n[i++])&&o.push(F[t]);return o},R=function(e){for(var t,n,o=[e],i=1,r=arguments;r.length>i;)o.push(r[i++]);return t=o[1],"function"==typeof t&&(n=t),(n||!m(t))&&(t=function(e,t){return n&&(t=n.call(this,e,t)),B(t)?void 0:t}),o[1]=t,O.apply(x,o)},J=u(function(){var e=j();return"[null]"!=O([e])||"{}"!=O({a:e})||"{}"!=O(Object(e))});A||(j=function(){if(B(this))throw TypeError("Symbol is not a constructor");return T(d(arguments.length>0?arguments[0]:void 0))},c(j.prototype,"toString",function(){return this._k}),B=function(e){return e instanceof j},o.create=H,o.isEnum=q,o.getDesc=W,o.setDesc=D,o.setDescs=M,o.getNames=g.get=z,o.getSymbols=U,s&&!e("./$.library")&&c(I,"propertyIsEnumerable",q,!0));var G={"for":function(e){return r(E,e+="")?E[e]:E[e]=j(e)},keyFor:function(e){return p(E,e)},useSetter:function(){C=!0},useSimple:function(){C=!1}};o.each.call("hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),function(e){var t=h(e);G[e]=A?t:T(t)}),C=!0,a(a.G+a.W,{Symbol:j}),a(a.S,"Symbol",G),a(a.S+a.F*!A,"Object",{create:H,defineProperty:D,defineProperties:M,getOwnPropertyDescriptor:W,getOwnPropertyNames:z,getOwnPropertySymbols:U}),x&&a(a.S+a.F*(!A||J),"JSON",{stringify:R}),f(j,"Symbol"),f(Math,"Math",!0),f(i.JSON,"JSON",!0)},{"./$":22,"./$.an-object":4,"./$.def":7,"./$.enum-keys":9,"./$.fails":10,"./$.get-names":11,"./$.global":12,"./$.has":13,"./$.is-array":16,"./$.keyof":23,"./$.library":24,"./$.property-desc":25,"./$.redef":26,"./$.shared":27,"./$.support-desc":28,"./$.tag":29,"./$.to-iobject":30,"./$.uid":31,"./$.wks":33}],37:[function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{"default":e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s=function(){function e(e,t){for(var n=0;n=3?s=2:-1>=s&&(s=0),a>=3?a=2:-1>=a&&(a=0),[i[s],r[a]]}},{key:"_networkFacebook",value:function(e){return this.config.networks.facebook.loadSdk?window.FB?(this._updateHref(e,"https://www.facebook.com/sharer/sharer.php",{u:this.config.networks.facebook.url}),FB.ui({method:"feed",name:this.config.networks.facebook.title,link:this.config.networks.facebook.url,picture:this.config.networks.facebook.image,caption:this.config.networks.facebook.caption,description:this.config.networks.facebook.description})):console.error("The Facebook JS SDK hasn't loaded yet."):this._updateHref(e,"https://www.facebook.com/sharer/sharer.php",{u:this.config.networks.facebook.url})}},{key:"_networkTwitter",value:function(e){this._updateHref(e,"https://twitter.com/intent/tweet",{text:this.config.networks.twitter.description,url:this.config.networks.twitter.url})}},{key:"_networkGooglePlus",value:function(e){this._updateHref(e,"https://plus.google.com/share",{url:this.config.networks.googlePlus.url})}},{key:"_networkPinterest",value:function(e){this._updateHref(e,"https://www.pinterest.com/pin/create/button",{url:this.config.networks.pinterest.url,media:this.config.networks.pinterest.image,description:this.config.networks.pinterest.description})}},{key:"_networkLinkedin",value:function(e){this._updateHref(e,"https://www.linkedin.com/shareArticle",{mini:"true",url:this.config.networks.linkedin.url,title:this.config.networks.linkedin.title,summary:this.config.networks.linkedin.description})}},{key:"_networkEmail",value:function(e){this._updateHref(e,"mailto:",{subject:this.config.networks.email.title,body:this.config.networks.email.description})}},{key:"_networkReddit",value:function(e){this._updateHref(e,"http://www.reddit.com/submit",{url:this.config.networks.reddit.url,title:this.config.networks.reddit.title})}},{key:"_networkWhatsapp",value:function(e){this._updateHref(e,"whatsapp://send",{text:this.config.networks.whatsapp.description+" "+this.config.networks.whatsapp.url})}},{key:"_injectStylesheet",value:function(e){if(!this.el.head.querySelector("link[href='"+e+"']")){var t=document.createElement("link");t.setAttribute("rel","stylesheet"),t.setAttribute("href",e),this.el.head.appendChild(t)}}},{key:"_injectHtml",value:function(e){var t=this.config.ui.networkOrder,n="",o=!0,i=!1,r=void 0;try{for(var s,a=t[Symbol.iterator]();!(o=(s=a.next()).done);o=!0){var c=s.value;n+="
  • "}}catch(u){i=!0,r=u}finally{try{!o&&a["return"]&&a["return"]()}finally{if(i)throw r}}e.innerHTML=this.config.ui.buttonText+"
      "+n+"
    "}},{key:"_injectFacebookSdk",value:function(){if(!window.FB&&this.config.networks.facebook.appId&&!this.el.body.querySelector("#fb-root")){var e=document.createElement("script");e.text="window.fbAsyncInit=function(){FB.init({appId:'"+this.config.networks.facebook.appId+"',status:true,xfbml:true})};(function(e,t,n){var r,i=e.getElementsByTagName(t)[0];if (e.getElementById(n)){return}r=e.createElement(t);r.id=n;r.src='//connect.facebook.net/en_US/all.js';i.parentNode.insertBefore(r,i)})(document,'script','facebook-jssdk');";var t=document.createElement("div");t.id="fb-root",this.el.body.appendChild(t),this.el.body.appendChild(e)}}},{key:"_hook",value:function(e,t,n){var o=this.config.networks[t][e];if("function"==typeof o){var i=o.call(this.config.networks[t],n);void 0!==i&&(i=this._normalizeFilterConfigUpdates(i),this.extend(this.config.networks[t],i,!0),this._normalizeNetworkConfiguration())}}},{key:"_defaultTitle",value:function(){var e=void 0;return(e=document.querySelector('meta[property="og:title"]')||document.querySelector('meta[name="twitter:title"]'))?e.getAttribute("content"):(e=document.querySelector("title"))?e.textContent||e.innerText:void 0}},{key:"_defaultImage",value:function(){var e=void 0;return(e=document.querySelector('meta[property="og:image"]')||document.querySelector('meta[name="twitter:image"]'))?e.getAttribute("content"):void 0}},{key:"_defaultDescription",value:function(){var e=void 0;return(e=document.querySelector('meta[property="og:description"]')||document.querySelector('meta[name="twitter:description"]')||document.querySelector('meta[name="description"]'))?e.getAttribute("content"):""}},{key:"_detectNetworks",value:function(){var e=!0,t=!1,n=void 0;try{for(var o,i=Object.keys(this.config.networks)[Symbol.iterator]();!(e=(o=i.next()).done);e=!0){var r=o.value,s=!0,a=!1,c=void 0;try{for(var u,l=Object.keys(this.config.networks[r])[Symbol.iterator]();!(s=(u=l.next()).done);s=!0){var f=u.value;null===this.config.networks[r][f]&&(this.config.networks[r][f]=this.config[f])}}catch(d){a=!0,c=d}finally{try{!s&&l["return"]&&l["return"]()}finally{if(a)throw c}}this.config.networks[r].enabled?(this["class"]="enabled",this.config.enabledNetworks+=1):this["class"]="disabled",this.config.networks[r]["class"]=this["class"]}}catch(d){t=!0,n=d}finally{try{!e&&i["return"]&&i["return"]()}finally{if(t)throw n}}}},{key:"_normalizeNetworkConfiguration",value:function(){this.config.networks.facebook.appId||(this.config.networks.facebook.loadSdk=!1),this.config.networks.twitter.description&&(this._isEncoded(this.config.networks.twitter.description)||(this.config.networks.twitter.description=encodeURIComponent(this.config.networks.twitter.description))),"number"==typeof this.config.networks.facebook.appId&&(this.config.networks.facebook.appId=this.config.networks.facebook.appId.toString())}},{key:"_normalizeFilterConfigUpdates",value:function(e){return this.config.networks.facebook.appId!==e.appId&&(console.warn("You are unable to change the Facebook appId after the button has been initialized. Please update your Facebook filters accordingly."),delete e.appId),this.config.networks.facebook.loadSdk!==e.loadSdk&&(console.warn("You are unable to change the Facebook loadSdk option after the button has been initialized. Please update your Facebook filters accordingly."),delete e.appId),e}}]),t}(u["default"]);t.exports=l},{"./share-utils":38,"core-js/fn/array/iterator":1,"core-js/fn/math/trunc":2,"core-js/fn/symbol":3}],38:[function(e,t,n){"use strict";function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(n,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n=0,i=e.getElementsByTagName("a")[0];if(i.setAttribute("href",this._getUrl(t,!o,n)),!(o||this.config.networks.facebook.loadSdk&&"facebook"===e.getAttribute("class"))){var r={width:500,height:350};r.top=screen.height/2-r.height/2,r.left=screen.width/2-r.width/2,window.open(i.href,"targetWindow","\n toolbar=no,\n location=no,\n status=no,\n menubar=no,\n scrollbars=yes,\n resizable=yes,\n left="+r.left+",\n top="+r.top+",\n width="+r.width+",\n height="+r.height+"\n ")}}},{key:"popup",value:function t(e){var n=this,o=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],t={width:500,height:350};t.top=screen.height/2-t.height/2,t.left=screen.width/2-t.width/2;var i=function(){var e=[],t=!0,i=!1,r=void 0;try{for(var s,a=Object.keys(o)[Symbol.iterator]();!(t=(s=a.next()).done);t=!0){var c=s.value,u=o[c];e.push(c+"="+n._encode(u))}}catch(l){i=!0,r=l}finally{try{!t&&a["return"]&&a["return"]()}finally{if(i)throw r}}return e.join("&")}();i&&(i="?"+i),window.open(e+i,"targetWindow","\n toolbar=no,\n location=no,\n status=no,\n menubar=no,\n scrollbars=yes,\n resizable=yes,\n left="+t.left+",\n top="+t.top+",\n width="+t.width+",\n height="+t.height+"\n ")}},{key:"_merge",value:function(e){function t(t,n){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}(function(e,t){"object"!=typeof e&&(e={});for(var n in t)if(t.hasOwnProperty(n)){var o=t[n];if("object"==typeof o){e[n]=this._merge(e[n],o);continue}e[n]=o}for(var i=2,r=arguments.length;r>i;i++)_merge(e,arguments[i]);return e})},{key:"_objToArray",value:function(e){var t=[];for(var n in e)"object"==typeof e[n]&&t.push(e[n]);return t}},{key:"_isMobile",value:function(){return navigator.userAgent.match(/Android|iPhone|PhantomJS/i)&&!navigator.userAgent.match(/iPod|iPad/i)?!0:!1}}]),e}();String.prototype.toRFC3986=function(){var e=encodeURIComponent(this);e.replace(/[!'()*]/g,function(e){return"%"+e.charCodeAt(0).toString(16)})},String.prototype.capFLetter=function(){return this.charAt(0).toUpperCase()+this.slice(1)},n["default"]=r,t.exports=n["default"]},{}]},{},[37])(37)}); \ No newline at end of file diff --git a/styles.scss b/styles.scss new file mode 100644 index 000000000..ecef61e27 --- /dev/null +++ b/styles.scss @@ -0,0 +1,29 @@ +--- +# Use a comment to ensure Jekyll reads the file to be transformed into CSS later +# only main files contain this front matter, not partials. +--- + +// +// ___ +// /\_ \ +// _____ ___ ___\//\ \ __ +// /\ '__`\ / __`\ / __`\\ \ \ /'__`\ +// \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ +// \ \ ,__/\ \____/\ \____//\____\ \____\ +// \ \ \/ \/___/ \/___/ \/____/\/____/ +// \ \_\ +// \/_/ +// +// Designed, built, and released under MIT license by @mdo. Learn more at +// https://github.com/poole/poole. + +@import "variables"; +@import "base"; +@import "type"; +@import "syntax"; +@import "code"; +@import "layout"; +@import "masthead"; +@import "posts"; +@import "pagination"; +@import "message";