aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Layout.purs
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2016-12-18 09:58:54 -0800
committerChristine Dodrill <me@christine.website>2016-12-18 09:58:58 -0800
commitddaff012aec9af61e508a09144baf52c7ede4cdc (patch)
tree1e97a7eebaac94855c7df70c97d01615c166b37b /frontend/src/Layout.purs
parent3df14063b29a81ed7eed66d270d19c54f7fa4bd0 (diff)
downloadxesite-ddaff012aec9af61e508a09144baf52c7ede4cdc.tar.xz
xesite-ddaff012aec9af61e508a09144baf52c7ede4cdc.zip
frontend/Layout: contact page has social media links
Diffstat (limited to 'frontend/src/Layout.purs')
-rw-r--r--frontend/src/Layout.purs15
1 files changed, 12 insertions, 3 deletions
diff --git a/frontend/src/Layout.purs b/frontend/src/Layout.purs
index c04a907..193419e 100644
--- a/frontend/src/Layout.purs
+++ b/frontend/src/Layout.purs
@@ -4,6 +4,7 @@ import App.BlogEntry as BlogEntry
import App.BlogIndex as BlogIndex
import App.Counter as Counter
import App.Resume as Resume
+import Pux.Html as H
import App.Routes (Route(..))
import Control.Monad.RWS (state)
import DOM (DOM)
@@ -11,10 +12,9 @@ import Network.HTTP.Affjax (AJAX)
import Prelude (($), (#), map, pure)
import Pux (EffModel, noEffects, mapEffects, mapState)
import Pux.DocumentTitle (documentTitle)
-import Pux.Html as H
import Pux.Html (style, Html, a, code, div, h1, h2, h3, h4, li, nav, p, pre, text, ul, img, span)
-import Pux.Html.Attributes (classID, className, id_, role, href, src, rel, title)
import Pux.Html (Html, a, code, div, h1, h3, h4, li, nav, p, pre, text, ul)
+import Pux.Html.Attributes (attr, target, href, classID, className, id_, role, src, rel, title)
import Pux.Router (link)
data Action
@@ -83,7 +83,7 @@ navbar state =
, ul
[ className "right hide-on-med-and-down" ]
[ li [] [ link "/blog" [] [ text "Blog" ] ]
- , li [] [ link "/projects" [] [ text "Projects" ] ]
+ -- , li [] [ link "/projects" [] [ text "Projects" ] ]
, li [] [ link "/resume" [] [ text "Resume" ] ]
, li [] [ link "/contact" [] [ text "Contact" ] ]
]
@@ -106,6 +106,15 @@ contact =
, a [ href "/static/gpg.pub" ] [ text "here" ]
, text "."
]
+ , h3 [] [ text "Social Media" ]
+ , ul
+ [ className "browser-default" ]
+ [ li [] [ a [ href "https://github.com/Xe" ] [ text "Github" ] ]
+ , li [] [ a [ href "https://twitter.com/theprincessxena"] [ text "Twitter" ] ]
+ , li [] [ a [ href "https://keybase.io/xena" ] [ text "Keybase" ] ]
+ , li [] [ a [ href "https://www.coinbase.com/christinedodrill" ] [ text "Coinbase" ] ]
+ , li [] [ a [ href "https://www.facebook.com/chrissycade1337" ] [ text "Facebook" ] ]
+ ]
]
, div
[ className "col s6" ]