commit
0676335a27
@ -0,0 +1,5 @@ |
||||
.git |
||||
.stack-work |
||||
_cache |
||||
_site |
||||
stack.yaml.lock |
@ -0,0 +1,152 @@ |
||||
$bg-color: #F3F8F1; |
||||
$primary-color: #0197F6; |
||||
$secondary-color: #D7263D; |
||||
|
||||
html { |
||||
font-family: Hack, monospace; |
||||
font-size: 80%; |
||||
background-color: $bg-color; |
||||
} |
||||
|
||||
a { |
||||
color: $primary-color; |
||||
text-decoration: none; |
||||
} |
||||
|
||||
a:hover { |
||||
color : $secondary-color; |
||||
} |
||||
|
||||
a:visited { |
||||
color: $secondary-color; |
||||
} |
||||
|
||||
body { |
||||
font-size: 1.6rem; |
||||
color: #000; |
||||
} |
||||
|
||||
header { |
||||
border-bottom: 0.2rem solid #000; |
||||
} |
||||
|
||||
nav { |
||||
text-align: right; |
||||
} |
||||
|
||||
nav a { |
||||
font-size: 1.8rem; |
||||
font-weight: bold; |
||||
color: black; |
||||
text-decoration: none; |
||||
text-transform: uppercase; |
||||
} |
||||
|
||||
h1 { |
||||
font-size: 2.4rem; |
||||
} |
||||
|
||||
h2 { |
||||
font-size: 2rem; |
||||
} |
||||
|
||||
article .header { |
||||
font-size: 1.4rem; |
||||
font-style: italic; |
||||
color: #555; |
||||
} |
||||
|
||||
.logo a { |
||||
font-weight: bold; |
||||
color: #000; |
||||
text-decoration: none; |
||||
} |
||||
|
||||
@media (max-width: 319px) { |
||||
body { |
||||
width: 90%; |
||||
margin: 0; |
||||
padding: 0 5%; |
||||
} |
||||
header { |
||||
margin: 4.2rem 0; |
||||
} |
||||
nav { |
||||
margin: 0 auto 3rem; |
||||
text-align: center; |
||||
} |
||||
footer { |
||||
text-align: center; |
||||
} |
||||
.logo { |
||||
text-align: center; |
||||
margin: 1rem auto 3rem; |
||||
} |
||||
.logo a { |
||||
font-size: 2.4rem; |
||||
} |
||||
nav a { |
||||
display: block; |
||||
line-height: 1.6; |
||||
} |
||||
} |
||||
|
||||
@media (min-width: 320px) { |
||||
body { |
||||
width: 90%; |
||||
margin: 0; |
||||
padding: 0 5%; |
||||
} |
||||
header { |
||||
margin: 4.2rem 0; |
||||
} |
||||
nav { |
||||
margin: 0 auto 3rem; |
||||
text-align: center; |
||||
} |
||||
footer { |
||||
text-align: center; |
||||
} |
||||
.logo { |
||||
text-align: center; |
||||
margin: 1rem auto 3rem; |
||||
} |
||||
.logo a { |
||||
font-size: 2.4rem; |
||||
} |
||||
nav a { |
||||
display: inline; |
||||
margin: 0 0.6rem; |
||||
} |
||||
} |
||||
|
||||
@media (min-width: 640px) { |
||||
body { |
||||
width: 66%; |
||||
margin: 0 auto; |
||||
padding: 0; |
||||
} |
||||
header { |
||||
margin: 0 0 3rem; |
||||
padding: 1.2rem 0; |
||||
} |
||||
nav { |
||||
margin: 0; |
||||
text-align: right; |
||||
} |
||||
nav a { |
||||
margin: 0 0 0 1.2rem; |
||||
display: inline; |
||||
} |
||||
footer { |
||||
text-align: right; |
||||
} |
||||
.logo { |
||||
margin: 0; |
||||
text-align: left; |
||||
} |
||||
.logo a { |
||||
float: left; |
||||
font-size: 1.8rem; |
||||
} |
||||
} |
@ -0,0 +1,15 @@ |
||||
--- |
||||
title: Welcome |
||||
--- |
||||
|
||||
<p>My name is Rostyslav Hnatyshyn... I go by Rosty. |
||||
I am a first year PhD student at Arizona State University. |
||||
My primary research interests are computer graphics, data visualization and algorithm design. |
||||
I currently work as an intern at Los Alamos National Laboratory, and I am also a research assistant at the VADER lab at ASU. My resume is available <a>here</a>.</p> |
||||
|
||||
<p>This website aims to document some of my interests and the projects that I have been working on, both in and out of school. |
||||
It is written in Haskell using <a href="https://jaspervdj.be/hakyll/index.html">Hakyll</a>, and the source code is available <a>here</a>. |
||||
</p> |
||||
|
||||
<h2>Posts</h2> |
||||
$partial("templates/post-list.html")$ |
@ -0,0 +1,12 @@ |
||||
name: rshyn-site |
||||
version: 0.1.0.0 |
||||
build-type: Simple |
||||
cabal-version: >= 1.10 |
||||
|
||||
executable site |
||||
main-is: site.hs |
||||
build-depends: base == 4.* |
||||
, hakyll == 4.15.* |
||||
, hakyll-sass == 0.2.4 |
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N |
||||
default-language: Haskell2010 |
@ -0,0 +1,53 @@ |
||||
-------------------------------------------------------------------------------- |
||||
{-# LANGUAGE OverloadedStrings #-} |
||||
|
||||
import Data.Monoid (mappend) |
||||
import Hakyll |
||||
import Hakyll.Web.Sass (sassCompiler) |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
main :: IO () |
||||
main = hakyll $ do |
||||
match "images/*" $ do |
||||
route idRoute |
||||
compile copyFileCompiler |
||||
|
||||
scssDependency <- makePatternDependency "css/**.scss" |
||||
rulesExtraDependencies [scssDependency] $ |
||||
match "css/default.scss" $ |
||||
do |
||||
route $ setExtension "css" |
||||
compile (fmap compressCss <$> sassCompiler) |
||||
|
||||
match "css/*" $ do |
||||
route idRoute |
||||
compile compressCssCompiler |
||||
|
||||
match "posts/*" $ do |
||||
route $ setExtension "html" |
||||
compile $ |
||||
pandocCompiler |
||||
>>= loadAndApplyTemplate "templates/post.html" postCtx |
||||
>>= loadAndApplyTemplate "templates/default.html" postCtx |
||||
>>= relativizeUrls |
||||
|
||||
match "index.html" $ do |
||||
route idRoute |
||||
compile $ do |
||||
posts <- recentFirst =<< loadAll "posts/*" |
||||
let indexCtx = |
||||
listField "posts" postCtx (return posts) |
||||
`mappend` defaultContext |
||||
|
||||
getResourceBody |
||||
>>= applyAsTemplate indexCtx |
||||
>>= loadAndApplyTemplate "templates/default.html" indexCtx |
||||
>>= relativizeUrls |
||||
|
||||
match "templates/*" $ compile templateBodyCompiler |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
postCtx :: Context String |
||||
postCtx = |
||||
dateField "date" "%B %e, %Y" |
||||
`mappend` defaultContext |
@ -0,0 +1,69 @@ |
||||
# This file was automatically generated by 'stack init' |
||||
# |
||||
# Some commonly used options have been documented as comments in this file. |
||||
# For advanced use and comprehensive documentation of the format, please see: |
||||
# https://docs.haskellstack.org/en/stable/yaml_configuration/ |
||||
|
||||
# Resolver to choose a 'specific' stackage snapshot or a compiler version. |
||||
# A snapshot resolver dictates the compiler version and the set of packages |
||||
# to be used for project dependencies. For example: |
||||
# |
||||
# resolver: lts-3.5 |
||||
# resolver: nightly-2015-09-21 |
||||
# resolver: ghc-7.10.2 |
||||
# |
||||
# The location of a snapshot can be provided as a file or url. Stack assumes |
||||
# a snapshot provided as a file might change, whereas a url resource does not. |
||||
# |
||||
# resolver: ./custom-snapshot.yaml |
||||
# resolver: https://example.com/snapshots/2018-01-01.yaml |
||||
resolver: |
||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/19/25.yaml |
||||
|
||||
# User packages to be built. |
||||
# Various formats can be used as shown in the example below. |
||||
# |
||||
# packages: |
||||
# - some-directory |
||||
# - https://example.com/foo/bar/baz-0.0.2.tar.gz |
||||
# subdirs: |
||||
# - auto-update |
||||
# - wai |
||||
packages: |
||||
- . |
||||
|
||||
# Dependency packages to be pulled from upstream that are not in the resolver. |
||||
# These entries can reference officially published versions as well as |
||||
# forks / in-progress versions pinned to a git hash. For example: |
||||
# |
||||
extra-deps: |
||||
- hakyll-sass-0.2.4 |
||||
# - acme-missiles-0.3 |
||||
# - git: https://github.com/commercialhaskell/stack.git |
||||
# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a |
||||
# |
||||
# extra-deps: [] |
||||
|
||||
# Override default flag values for local packages and extra-deps |
||||
# flags: {} |
||||
|
||||
# Extra package databases containing global packages |
||||
# extra-package-dbs: [] |
||||
|
||||
# Control whether we use the GHC we find on the path |
||||
# system-ghc: true |
||||
# |
||||
# Require a specific version of stack, using version ranges |
||||
# require-stack-version: -any # Default |
||||
# require-stack-version: ">=2.9" |
||||
# |
||||
# Override the architecture used by stack, especially useful on Windows |
||||
# arch: i386 |
||||
# arch: x86_64 |
||||
# |
||||
# Extra directories used by stack for building |
||||
# extra-include-dirs: [/path/to/dir] |
||||
# extra-lib-dirs: [/path/to/dir] |
||||
# |
||||
# Allow a newer minor version of GHC than the snapshot specifies |
||||
# compiler-check: newer-minor |
@ -0,0 +1,25 @@ |
||||
<!doctype html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="x-ua-compatible" content="ie=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<title>rshyn.site - $title$</title> |
||||
<link rel="stylesheet" href="/css/default.css" /> |
||||
</head> |
||||
<body> |
||||
<header> |
||||
<div class="logo"> |
||||
<a href="/">rshyn.site</a> |
||||
</div> |
||||
<nav> |
||||
<a href="/">Home</a> |
||||
</nav> |
||||
</header> |
||||
|
||||
<main role="main"> |
||||
<h1>$title$</h1> |
||||
$body$ |
||||
</main> |
||||
</body> |
||||
</html> |
@ -0,0 +1,9 @@ |
||||
<ul> |
||||
$if(posts)$ |
||||
$for(posts)$ |
||||
<li> |
||||
<a href="$url$">$title$</a> - $date$ |
||||
</li> |
||||
$endfor$ |
||||
$endif$ |
||||
</ul> |
@ -0,0 +1,11 @@ |
||||
<article> |
||||
<section class="header"> |
||||
Posted on $date$ |
||||
$if(author)$ |
||||
by $author$ |
||||
$endif$ |
||||
</section> |
||||
<section> |
||||
$body$ |
||||
</section> |
||||
</article> |
Loading…
Reference in new issue