site/views/contact.moon

50 lines
1.6 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", ->
p class: "lead", "Email"
div class: "email", ->
text "xena@yolo-swag.com"
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-03 18:29:34 +00:00
text "0x2E5CBE74"
2015-02-03 18:27:15 +00:00
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."
p ->
text "To email me quickly, please fill out "
a href: "/contact/email", "this form"
text "."
div class: "col-md-6", ->
p class: "lead", ->
text "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
p class: "lead", ->
text "Social Media"
div class: "row", ->
2015-02-03 18:27:15 +00:00
socialLink "github.png", "http://github.com/Xe", "GitHub"
socialLink "twitter.png", "http://twitter.com/theprincessxena", "Twitter"
socialLink "medium.jpg", "http://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:27:15 +00:00
socialLink "youtube.png", "http://youtube.com/shadowh511", "YouTube"
socialLink "reddit.png", "http://reddit.com/user/shadowh511", "Reddit"