site/views/contact.moon

59 lines
1.9 KiB
Plaintext
Raw Normal View History

2015-02-01 04:28:06 +00:00
import Widget from require "lapis.html"
class Index extends Widget
content: =>
2015-02-03 18:27:15 +00:00
socialLink = (imgl, url, name) ->
2015-02-01 04:44:51 +00:00
div class: "col-md-4", ->
2015-02-01 04:45:35 +00:00
img src: "/static/img/contact/" .. imgl, height: 250, width: 250
2015-02-01 04:44:51 +00:00
a class: "lead", href: url, name
style [[ img { padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; } ]]
2015-02-01 04:28:06 +00:00
center ->
h1 "Contact Info"
2015-02-03 18:27:15 +00:00
div class: "row", ->
div class: "col-md-6", ->
2015-02-07 02:46:22 +00:00
h3 "Email"
div class: "row", ->
div class: "col-md-6", ->
h4 "Personal"
div class: "email", ->
text "xena@yolo-swag.com"
div class: "col-md-6", ->
h4 "Professional"
div class: "email", ->
text "me@christine.website"
2015-02-03 18:29:34 +00:00
br!
2015-02-03 18:27:15 +00:00
p ->
text "My GPG fingerprint is "
code ->
2015-02-07 18:29:54 +00:00
text "0x46DF6D21"
text ". If you get an email that appears to be from me and the signature does not match that fingerprint, it is not from me. You may download a copy of my public key "
a href: "/static/gpg.pub", "here"
text "."
2015-02-03 18:27:15 +00:00
p ->
text "To email me quickly, please fill out "
a href: "/contact/email", "this form"
text "."
div class: "col-md-6", ->
2015-02-07 02:46:22 +00:00
h3 "IRC"
2015-02-01 04:28:06 +00:00
2015-02-03 18:27:15 +00:00
p "I am on many IRC networks. On Freenode I am using the nick Xe but elsewhere I will use the nick Xena."
2015-02-01 04:28:06 +00:00
2015-02-07 02:46:22 +00:00
h3 ->
2015-02-01 04:28:06 +00:00
text "Social Media"
div class: "row", ->
2015-02-03 18:43:52 +00:00
socialLink "github.png", "https://github.com/Xe", "GitHub"
socialLink "twitter.png", "https://twitter.com/theprincessxena", "Twitter"
socialLink "medium.jpg", "https://medium.com/@theprincessxena", "Medium"
2015-02-01 04:28:06 +00:00
2015-02-01 04:43:13 +00:00
div class: "row", ->
2015-02-03 18:43:52 +00:00
socialLink "youtube.png", "https://youtube.com/shadowh511", "YouTube"
socialLink "reddit.png", "https://reddit.com/user/shadowh511", "Reddit"
socialLink "keybase.png", "https://keybase.io/xena", "Keybase"