Skip to content

Commit c14a0d3

Browse files
committed
add website
0 parents  commit c14a0d3

23 files changed

+703
-0
lines changed

.DS_Store

10 KB
Binary file not shown.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Ouch! Page not found :(</strong></p>
24+
<p>Sorry about this. A cup of <a href="https://www.youtube.com/watch?v=UGtKGX8B9hU">coffee</a> instead?</p>
25+
</div>

Gemfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.0.0"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
24+
gem "tzinfo", "~> 1.2"
25+
gem "tzinfo-data"
26+
end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
30+

Gemfile.lock

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.7.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.11.1)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.6.0)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.0.0)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (>= 0.9.5, < 2)
22+
jekyll-sass-converter (~> 2.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.3.3)
28+
pathutil (~> 0.9)
29+
rouge (~> 3.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (~> 1.8)
32+
jekyll-feed (0.12.1)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-sass-converter (2.0.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.6.1)
37+
jekyll (>= 3.3, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.1.0)
41+
kramdown-parser-gfm (1.1.0)
42+
kramdown (~> 2.0)
43+
liquid (4.0.3)
44+
listen (3.1.5)
45+
rb-fsevent (~> 0.9, >= 0.9.4)
46+
rb-inotify (~> 0.9, >= 0.9.7)
47+
ruby_dep (~> 1.2)
48+
mercenary (0.3.6)
49+
minima (2.5.1)
50+
jekyll (>= 3.5, < 5.0)
51+
jekyll-feed (~> 0.9)
52+
jekyll-seo-tag (~> 2.1)
53+
pathutil (0.16.2)
54+
forwardable-extended (~> 2.6)
55+
public_suffix (4.0.1)
56+
rb-fsevent (0.10.3)
57+
rb-inotify (0.10.0)
58+
ffi (~> 1.0)
59+
rouge (3.9.0)
60+
ruby_dep (1.5.0)
61+
safe_yaml (1.0.5)
62+
sassc (2.2.0)
63+
ffi (~> 1.9)
64+
terminal-table (1.8.0)
65+
unicode-display_width (~> 1.1, >= 1.1.1)
66+
thread_safe (0.3.6)
67+
tzinfo (1.2.5)
68+
thread_safe (~> 0.1)
69+
tzinfo-data (1.2019.2)
70+
tzinfo (>= 1.0.0)
71+
unicode-display_width (1.6.0)
72+
wdm (0.1.1)
73+
74+
PLATFORMS
75+
ruby
76+
77+
DEPENDENCIES
78+
jekyll (~> 4.0.0)
79+
jekyll-feed (~> 0.12)
80+
minima (~> 2.5)
81+
tzinfo (~> 1.2)
82+
tzinfo-data
83+
wdm (~> 0.1.1)
84+
85+
BUNDLED WITH
86+
1.17.3

_config.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: Nika Jurov
22+
23+
description: >- # this means to ignore newlines until "baseurl:"
24+
PhD Student in Linguistics
25+
adress: 1417E Marie Mount Hall, University of Maryland, College Park MD 20742
26+
baseurl: "" # the subpath of your site, e.g. /blog
27+
url: "http://n-ika.github.io" # the base hostname & protocol for your site, e.g. http://example.com
28+
# twitter_username: jekyllrb
29+
github_username: n-ika
30+
31+
# Build settings
32+
theme: minima
33+
plugins:
34+
- jekyll-feed
35+
36+
# Exclude from processing.
37+
# The following items will not be processed, by default.
38+
# Any item listed under the `exclude:` key here will be automatically added to
39+
# the internal "default list".
40+
#
41+
# Excluded items can be processed by explicitly listing the directories or
42+
# their entries' file path in the `include:` list.
43+
#
44+
# exclude:
45+
# - .sass-cache/
46+
# - .jekyll-cache/
47+
# - gemfiles/
48+
# - Gemfile
49+
# - Gemfile.lock
50+
# - node_modules/
51+
# - vendor/bundle/
52+
# - vendor/cache/
53+
# - vendor/gems/
54+
# - vendor/ruby/

_includes/.DS_Store

6 KB
Binary file not shown.

_includes/footer.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<footer class="site-footer h-card">
2+
<data class="u-url" href="{{ "/" | relative_url }}"></data>
3+
4+
<div class="wrapper">
5+
6+
<div class="footer-col-wrapper">
7+
<div class="footer-col one-half">
8+
<ul class="contact-list">
9+
<li class="p-name">
10+
{%- if site.author -%}
11+
{{ site.author | escape }}
12+
{%- endif -%}
13+
</li>
14+
{%- if site.email -%}
15+
<li><a class="u-email" href="mailto:{{ [email protected] }}">{{ site.email }}</a></li>
16+
{%- endif -%}
17+
</ul>
18+
</div>
19+
20+
<div class="footer-col one-half">
21+
{%- if site.adress -%}
22+
{{ site.adress | escape }}
23+
{%- endif -%}
24+
</div>
25+
</div>
26+
27+
</div>
28+
29+
</footer>

_layouts/.DS_Store

6 KB
Binary file not shown.

_layouts/default.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3+
4+
{%- include head.html -%}
5+
6+
<body>
7+
8+
{%- include header.html -%}
9+
10+
<main class="page-content" aria-label="Content">
11+
<div class="wrapper">
12+
{{ content }}
13+
</div>
14+
</main>
15+
16+
{%- include footer.html -%}
17+
18+
</body>
19+
20+
</html>

0 commit comments

Comments
 (0)