Skip to content

Commit c4f3b59

Browse files
committed
Theme applied
1 parent 89bfb7a commit c4f3b59

File tree

15 files changed

+229
-7
lines changed

15 files changed

+229
-7
lines changed

.gitignore

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

.vs/ProjectSettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"CurrentProjectSetting": null
3+
}

.vs/VSWorkspaceState.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"ExpandedNodes": [
3+
""
4+
],
5+
"PreviewInSolutionExplorer": false
6+
}

.vs/jsanzdev.github.io/v16/.suo

15 KB
Binary file not shown.

.vs/slnx.sqlite

88 KB
Binary file not shown.

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>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

Gemfile

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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.2.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+
platforms :mingw, :x64_mingw, :mswin, :jruby 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", :platforms => [:mingw, :x64_mingw, :mswin]
30+
31+
# install theme
32+
gem "jekyll-dash", "~> 2.0.0"
33+
34+
# install aditional plugins
35+
gem 'jekyll-seo-tag'
36+

_config.yml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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: Jesus Sanz - Game Developer / Software Engineer
22+
email: jesus@jsanz.dev
23+
description: >- # this means to ignore newlines until "baseurl:"
24+
Hi there! My name is Jesus and I'm a game developer (Game Boy, Unreal Engine, Unity and Godot) and a Software Engineer (Swift, C++, WebApps). I also love technology so you might see some cool projects here too.
25+
baseurl: "" # the subpath of your site, e.g. /blog
26+
url: "https://jsanz.dev" # the base hostname & protocol for your site, e.g. http://example.com
27+
28+
paginate: 5
29+
paginate_path: "/blog/page:num/"
30+
31+
32+
# supported colors: green, red, orange, blue, cyan, pink, teal, yellow, indigo, purple
33+
dash:
34+
social_links:
35+
- url: https://twitter.com/jsanz_dev
36+
icon: twitter-square
37+
color: cyan
38+
- url: https://jesus-sanz.itch.io/
39+
icon: itch-io
40+
color: red
41+
- url: https://github.com/jsanzdev
42+
icon: github-square
43+
color: purple
44+
45+
show_author: true
46+
47+
animation_speed: 50
48+
49+
avatar_source: github
50+
github_username: jsanzdev
51+
52+
53+
54+
# Build settings
55+
theme: jekyll-dash
56+
plugins:
57+
- jekyll-feed
58+
- jekyll-seo-tag
59+
60+
# Exclude from processing.
61+
# The following items will not be processed, by default.
62+
# Any item listed under the `exclude:` key here will be automatically added to
63+
# the internal "default list".
64+
#
65+
# Excluded items can be processed by explicitly listing the directories or
66+
# their entries' file path in the `include:` list.
67+
#
68+
# exclude:
69+
# - .sass-cache/
70+
# - .jekyll-cache/
71+
# - gemfiles/
72+
# - Gemfile
73+
# - Gemfile.lock
74+
# - node_modules/
75+
# - vendor/bundle/
76+
# - vendor/cache/
77+
# - vendor/gems/
78+
# - vendor/ruby/

_includes/author.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<div class="author-box">
2+
{% if site.avatar_source == "github" and site.github_username %}
3+
{% capture avatar_image %}
4+
https://github.com/{{ site.github_username }}.png
5+
{% endcapture %}
6+
{% elsif site.plugins contains "liquid-md5" %}
7+
{% capture avatar_image %}
8+
https://gravatar.com/avatar/{{ site.email | downcase | md5 }}?s=256
9+
{% endcapture %}
10+
{% endif %}
11+
{% if avatar_image %}
12+
<img src="{{ avatar_image }}" class="author-avatar" alt="Avatar" />
13+
{% endif %}
14+
{{ site.description }}
15+
</div>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2021-03-17 15:36:04 +0100
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
Jekyll requires blog post files to be named according to the following format:
10+
11+
`YEAR-MONTH-DAY-title.MARKUP`
12+
13+
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
14+
15+
Jekyll also offers powerful support for code snippets:
16+
17+
{% highlight ruby %}
18+
def print_hi(name)
19+
puts "Hi, #{name}"
20+
end
21+
print_hi('Tom')
22+
#=> prints 'Hi, Tom' to STDOUT.
23+
{% endhighlight %}
24+
25+
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
26+
27+
[jekyll-docs]: https://jekyllrb.com/docs/home
28+
[jekyll-gh]: https://github.com/jekyll/jekyll
29+
[jekyll-talk]: https://talk.jekyllrb.com/

0 commit comments

Comments
 (0)