Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/IvanChou/hugo-theme-vec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIChou <me@ichou.cn>2016-10-23 09:45:27 +0300
committerIChou <me@ichou.cn>2016-10-23 09:46:10 +0300
commita738d428abba742e490ba33137f74ccff8f9ccf4 (patch)
tree69a354f8afc0524165796a6ff623340fc9a43179
parentd5a616acf70d3a75c1c093f58d6ac0720334023a (diff)
add formspree support #1
-rw-r--r--README.md5
-rw-r--r--exampleSite/config.toml1
-rw-r--r--exampleSite/content/contact.md1
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/page/single.html5
-rw-r--r--layouts/partials/disqus.html2
-rw-r--r--layouts/partials/formspree.html13
-rw-r--r--src/vec.scss36
-rw-r--r--static/css/vec.css2
-rw-r--r--static/css/vec.css.map2
10 files changed, 65 insertions, 4 deletions
diff --git a/README.md b/README.md
index bdee82b..72ed854 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,11 @@ If you need show table of contents per-post, adding `toc: true` (YAML) or `toc =
Please notice that TOC will be hidden when browser width is less than 920px.
+### Enable Formspree to your page
+
+If you need a form which enables guests to contact you by email, Formspree maybe a good choice.
+just adding `formspree: true` (YAML) or `formspree = true` (TOML) in the front matter of your page.
+
## Build your site
Add `theme = "vec"` to your `config.toml`, then
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 665c5e7..f18d1f3 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -26,6 +26,7 @@ googleAnalytics = "UA-57408564-1"
Description = "There are some words to describe your site"
Avater = "img/avatar.jpg"
SelfIntro = "Just a worm, seek for true, live in shadow, no more..."
+ Email = "yiichou@gmail.com"
GithubID = "Your Github ID"
TwitterID = "Your Twitter ID"
diff --git a/exampleSite/content/contact.md b/exampleSite/content/contact.md
index 8af1a26..1ebc028 100644
--- a/exampleSite/content/contact.md
+++ b/exampleSite/content/contact.md
@@ -1,6 +1,7 @@
+++
title = "Contact"
id = "contact"
+formspree = true
+++
# We are here to help you
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 891a85c..eeaf346 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -29,7 +29,7 @@
{{ end }}
</section>
- {{ partial "disqus.html" . }}
+ {{ if .Params.comments }}{{ partial "disqus.html" . }}{{ end }}
</div>
{{ partial "footer.html" . }}
diff --git a/layouts/page/single.html b/layouts/page/single.html
index c19795e..665095f 100644
--- a/layouts/page/single.html
+++ b/layouts/page/single.html
@@ -15,7 +15,12 @@
<div class="post-content">
{{ .Content }}
</div>
+
+ {{ if .Params.formspree }}{{ partial "formspree.html" . }}{{ end }}
+
</section>
+
+ {{ if .Params.comments }}{{ partial "disqus.html" . }}{{ end }}
</div>
{{ partial "footer.html" . }}
diff --git a/layouts/partials/disqus.html b/layouts/partials/disqus.html
index db86ed7..5fea4b6 100644
--- a/layouts/partials/disqus.html
+++ b/layouts/partials/disqus.html
@@ -1,4 +1,4 @@
-{{ if and .Site.DisqusShortname .Params.comments }}
+{{ if .Site.DisqusShortname }}
<section id="disqus_thread" class='disqus'></section>
<script>
var disqus_config = function () {
diff --git a/layouts/partials/formspree.html b/layouts/partials/formspree.html
new file mode 100644
index 0000000..c940e2c
--- /dev/null
+++ b/layouts/partials/formspree.html
@@ -0,0 +1,13 @@
+{{ if .Site.Params.Email }}
+<hr />
+<div id="formspree" class='formspree'>
+ <h2>CONTACT ME</h2>
+ <form action="https://formspree.io/{{ .Site.Params.Email }}" method="POST">
+ <input type="text" name="_gotcha" style="display:none" />
+ <input type="hidden" name="subject" value="comment to: {{ .Title }}">
+ <input type="email" name="email" placeholder="Your email" required>
+ <textarea name="message" placeholder="Your message" rows=5 required></textarea>
+ <button type="submit">Send</button>
+ </form>
+</div>
+{{ end }}
diff --git a/src/vec.scss b/src/vec.scss
index 61f258e..6380580 100644
--- a/src/vec.scss
+++ b/src/vec.scss
@@ -359,6 +359,42 @@ footer {
border-top: 1px solid #e7e7e7;
}
+/* ============== formspree ============== */
+
+.formspree {
+ input, textarea {
+ font-size: 0.8rem;
+ border: 1px solid #ddd;
+ background: #fff;
+ padding: 0.5rem 2%;
+ margin: 1.2rem 1rem 1.2rem 0;
+ line-height: 1.5rem;
+ width: 96%;
+ border: 1px solid #ddd;
+ border-radius: 3px;
+ display: block;
+ }
+
+ input {
+ max-width: 25rem;
+ }
+
+ button {
+ float: right;
+ color: #999;
+ font-weight: bold;
+ border-radius: 3px;
+ border: 1px solid #d5d5d5;
+ background: #fff;
+ font-size: .8rem;
+ padding: .5rem 1.2rem;
+
+ &:hover {
+ background: #f5f5f5;
+ }
+ }
+
+}
/* ============== media ============== */
diff --git a/static/css/vec.css b/static/css/vec.css
index 5fcaee3..e9a4bbf 100644
--- a/static/css/vec.css
+++ b/static/css/vec.css
@@ -1,2 +1,2 @@
-@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono|Russo+One|Source+Sans+Pro:400,700);@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css);.hljs{display:block;background:white;padding:0.5em;color:#333333;overflow-x:auto}.hljs-comment,.hljs-meta{color:#969896}.hljs-string,.hljs-variable,.hljs-template-variable,.hljs-strong,.hljs-emphasis,.hljs-quote{color:#df5000}.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d}.hljs-literal,.hljs-symbol,.hljs-bullet,.hljs-attribute{color:#0086b3}.hljs-section,.hljs-name{color:#63a35c}.hljs-tag{color:#333333}.hljs-title,.hljs-attr,.hljs-selector-id,.hljs-selector-class,.hljs-selector-attr,.hljs-selector-pseudo{color:#795da3}.hljs-addition{color:#55a532;background-color:#eaffea}.hljs-deletion{color:#bd2c00;background-color:#ffecec}.hljs-link{text-decoration:underline}html{height:100%}body{margin:0;padding:0;min-height:100%;font-family:"Source Sans Pro","PingFang SC","Microsoft YaHei",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:100%;letter-spacing:.01rem;position:relative}h1,h2,h3,h4,h5,h6{font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-weight:700;line-height:1.25}a{color:#005580;text-decoration:none}a:hover{color:#08c}img,video{max-width:100%}.pull-left{float:left}.pull-right{float:right}.clearfix::before,.clearfix::after{display:table;content:"";line-height:0}.clearfix::after{clear:both}.content{margin:0 auto;padding:6rem 1.85rem 8rem;max-width:40rem}header{position:fixed;top:0;width:100%;height:1.75rem;font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:.875rem;font-weight:bold;background:#2d2d2d;border-bottom:1px solid #000;z-index:99}header ul,header ol{margin:0;padding:0;list-style:none}header nav{padding:0 0.5rem}header .nav-center{text-align:center;line-height:1.75rem;color:#000;text-transform:uppercase;text-shadow:rgba(255,255,255,0.098) 0 1px 0,rgba(255,255,255,0.12) 0 0 1.875rem}header a{color:#bbb;line-height:1.75rem;padding:0 0.5rem}header a:hover,header .current a{color:#fff}footer{position:absolute;width:100%;padding:1rem;bottom:0;box-sizing:border-box;color:#ccc}footer a{color:#ccc}footer .footer-info{border-top:.4rem double #f2f2f2;padding-top:0.25rem}.user-profile{width:100%;padding:4rem 1rem 8rem;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;color:#888;text-align:center;box-sizing:border-box}.user-profile .user-avatar{margin:1rem 0}.user-profile .user-avatar img{width:16rem;height:16rem}.user-profile .user-socials a{color:#a7a7a7;font-size:1.25rem;line-height:1.5rem;text-decoration:none}.user-profile .user-socials a:hover{color:#777}.user-profile .user-motivation{max-width:56rem;font-size:4rem;line-height:4.125rem;margin:1rem auto}.posts{margin-left:-6rem}.posts .posts-archive{margin-bottom:3rem}.posts .posts-archive time{display:block;width:10rem;float:left;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-size:1.75rem;text-align:right;color:#CCCCCC;font-weight:bold;white-space:nowrap;line-height:1.25rem;padding:.125rem 0}.posts .posts-archive ol{margin-left:12rem}.posts .posts-archive ol li{margin-bottom:.5rem;list-style:decimal}.post{color:#444;line-height:1.8;width:100%}.post hr{height:0.25rem;padding:0;margin:1.5rem 0;background-color:#e7e7e7;border:0}.post em{text-emphasis-style:circle;text-emphasis-position:under}.post code{font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:0.85rem;color:#555;background-color:#f5f5f5;border:1px solid #eef;border-radius:3px;padding:0.2rem 0.5rem}.post pre{display:block;margin:0 0 1rem 0;padding:1rem;font-size:0.8rem;line-height:1.4;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5}.post pre code{font-size:0.7rem;padding:0;color:inherit;border:none}.post blockquote{padding:0.5rem 1rem;margin:0.8rem 0;color:#7a7a7a;border-left:0.3rem solid #e5e5e5}.post blockquote p:first-child{margin-top:0}.post blockquote p:last-child{margin-bottom:0}#TableOfContents{border-radius:.25rem;padding:1rem;background-color:#f7f7f7;margin:5rem 0 0 35rem;position:absolute;font-size:.875rem}#TableOfContents ul{list-style:none;margin:0;padding:0}#TableOfContents a{display:inline-block;white-space:nowrap;overflow:hidden;max-width:14rem;text-overflow:ellipsis}#TableOfContents a:before{content:'•';padding-right:.25rem}#TableOfContents a+ul{padding-left:1.5rem}#TableOfContents ~ section{margin-left:-6rem}.pagination{width:100%;margin:4rem 0 0;padding:1.6rem 0;border-top:1px solid #e7e7e7}.pagination a{width:42%;overflow:hidden;position:relative}.pagination .previous{float:left;padding-left:1.25rem}.pagination .previous:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;left:0;content:"\f053"}.pagination .next{float:right;text-align:right;padding-right:1.25rem}.pagination .next:after{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;right:0;content:"\f054"}.disqus{width:100%;padding:5rem 0 2rem;border-top:1px solid #e7e7e7}@media (max-width: 480px){.content{margin:0 auto;padding:4rem 1rem 8rem}.user-profile .user-avatar img{width:8rem;height:8rem}.user-profile .user-motivation{font-size:2.625rem;line-height:3.125rem}.pagination a{font-size:.75rem}.pagination .previous:before,.pagination .next:after{margin-top:-.35rem}}@media (max-width: 920px){.posts{margin-left:0rem}#TableOfContents{display:none}#TableOfContents ~ section{margin-left:0rem}}@media (max-width: 700px){.posts{margin-left:0rem}.posts .posts-archive time{float:none;text-align:left;margin-bottom:1rem}.posts .posts-archive ol{margin-left:0}}
+@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono|Russo+One|Source+Sans+Pro:400,700);@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css);.hljs{display:block;background:white;padding:0.5em;color:#333333;overflow-x:auto}.hljs-comment,.hljs-meta{color:#969896}.hljs-string,.hljs-variable,.hljs-template-variable,.hljs-strong,.hljs-emphasis,.hljs-quote{color:#df5000}.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d}.hljs-literal,.hljs-symbol,.hljs-bullet,.hljs-attribute{color:#0086b3}.hljs-section,.hljs-name{color:#63a35c}.hljs-tag{color:#333333}.hljs-title,.hljs-attr,.hljs-selector-id,.hljs-selector-class,.hljs-selector-attr,.hljs-selector-pseudo{color:#795da3}.hljs-addition{color:#55a532;background-color:#eaffea}.hljs-deletion{color:#bd2c00;background-color:#ffecec}.hljs-link{text-decoration:underline}html{height:100%}body{margin:0;padding:0;min-height:100%;font-family:"Source Sans Pro","PingFang SC","Microsoft YaHei",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:100%;letter-spacing:.01rem;position:relative}h1,h2,h3,h4,h5,h6{font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-weight:700;line-height:1.25}a{color:#005580;text-decoration:none}a:hover{color:#08c}img,video{max-width:100%}.pull-left{float:left}.pull-right{float:right}.clearfix::before,.clearfix::after{display:table;content:"";line-height:0}.clearfix::after{clear:both}.content{margin:0 auto;padding:6rem 1.85rem 8rem;max-width:40rem}header{position:fixed;top:0;width:100%;height:1.75rem;font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:.875rem;font-weight:bold;background:#2d2d2d;border-bottom:1px solid #000;z-index:99}header ul,header ol{margin:0;padding:0;list-style:none}header nav{padding:0 0.5rem}header .nav-center{text-align:center;line-height:1.75rem;color:#000;text-transform:uppercase;text-shadow:rgba(255,255,255,0.098) 0 1px 0,rgba(255,255,255,0.12) 0 0 1.875rem}header a{color:#bbb;line-height:1.75rem;padding:0 0.5rem}header a:hover,header .current a{color:#fff}footer{position:absolute;width:100%;padding:1rem;bottom:0;box-sizing:border-box;color:#ccc}footer a{color:#ccc}footer .footer-info{border-top:.4rem double #f2f2f2;padding-top:0.25rem}.user-profile{width:100%;padding:4rem 1rem 8rem;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;color:#888;text-align:center;box-sizing:border-box}.user-profile .user-avatar{margin:1rem 0}.user-profile .user-avatar img{width:16rem;height:16rem}.user-profile .user-socials a{color:#a7a7a7;font-size:1.25rem;line-height:1.5rem;text-decoration:none}.user-profile .user-socials a:hover{color:#777}.user-profile .user-motivation{max-width:56rem;font-size:4rem;line-height:4.125rem;margin:1rem auto}.posts{margin-left:-6rem}.posts .posts-archive{margin-bottom:3rem}.posts .posts-archive time{display:block;width:10rem;float:left;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-size:1.75rem;text-align:right;color:#CCCCCC;font-weight:bold;white-space:nowrap;line-height:1.25rem;padding:.125rem 0}.posts .posts-archive ol{margin-left:12rem}.posts .posts-archive ol li{margin-bottom:.5rem;list-style:decimal}.post{color:#444;line-height:1.8;width:100%}.post hr{height:0.25rem;padding:0;margin:1.5rem 0;background-color:#e7e7e7;border:0}.post em{text-emphasis-style:circle;text-emphasis-position:under}.post code{font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:0.85rem;color:#555;background-color:#f5f5f5;border:1px solid #eef;border-radius:3px;padding:0.2rem 0.5rem}.post pre{display:block;margin:0 0 1rem 0;padding:1rem;font-size:0.8rem;line-height:1.4;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5}.post pre code{font-size:0.7rem;padding:0;color:inherit;border:none}.post blockquote{padding:0.5rem 1rem;margin:0.8rem 0;color:#7a7a7a;border-left:0.3rem solid #e5e5e5}.post blockquote p:first-child{margin-top:0}.post blockquote p:last-child{margin-bottom:0}#TableOfContents{border-radius:.25rem;padding:1rem;background-color:#f7f7f7;margin:5rem 0 0 35rem;position:absolute;font-size:.875rem}#TableOfContents ul{list-style:none;margin:0;padding:0}#TableOfContents a{display:inline-block;white-space:nowrap;overflow:hidden;max-width:14rem;text-overflow:ellipsis}#TableOfContents a:before{content:'•';padding-right:.25rem}#TableOfContents a+ul{padding-left:1.5rem}#TableOfContents ~ section{margin-left:-6rem}.pagination{width:100%;margin:4rem 0 0;padding:1.6rem 0;border-top:1px solid #e7e7e7}.pagination a{width:42%;overflow:hidden;position:relative}.pagination .previous{float:left;padding-left:1.25rem}.pagination .previous:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;left:0;content:"\f053"}.pagination .next{float:right;text-align:right;padding-right:1.25rem}.pagination .next:after{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;right:0;content:"\f054"}.disqus{width:100%;padding:5rem 0 2rem;border-top:1px solid #e7e7e7}.formspree input,.formspree textarea{font-size:0.8rem;border:1px solid #ddd;background:#fff;padding:0.5rem 2%;margin:1.2rem 1rem 1.2rem 0;line-height:1.5rem;width:96%;border:1px solid #ddd;border-radius:3px;display:block}.formspree input{max-width:25rem}.formspree button{float:right;color:#999;font-weight:bold;border-radius:3px;border:1px solid #d5d5d5;background:#fff;font-size:.8rem;padding:.5rem 1.2rem}.formspree button:hover{background:#f5f5f5}@media (max-width: 480px){.content{margin:0 auto;padding:4rem 1rem 8rem}.user-profile .user-avatar img{width:8rem;height:8rem}.user-profile .user-motivation{font-size:2.625rem;line-height:3.125rem}.pagination a{font-size:.75rem}.pagination .previous:before,.pagination .next:after{margin-top:-.35rem}}@media (max-width: 920px){.posts{margin-left:0rem}#TableOfContents{display:none}#TableOfContents ~ section{margin-left:0rem}}@media (max-width: 700px){.posts{margin-left:0rem}.posts .posts-archive time{float:none;text-align:left;margin-bottom:1rem}.posts .posts-archive ol{margin-left:0}}
/*# sourceMappingURL=vec.css.map */
diff --git a/static/css/vec.css.map b/static/css/vec.css.map
index 06c2679..939c819 100644
--- a/static/css/vec.css.map
+++ b/static/css/vec.css.map
@@ -1,6 +1,6 @@
{
"version": 3,
-"mappings": "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",
+"mappings": "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",
"sources": ["../../src/vec.scss","../../src/github-gist.scss"],
"names": [],
"file": "vec.css"