Skip to content

Commit a4c90ac

Browse files
committed
Basic and Updated
1 parent c5e224f commit a4c90ac

File tree

8 files changed

+77
-68
lines changed

8 files changed

+77
-68
lines changed

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# source "https://rubygems.org"
1+
source "https://rubygems.org"
22
# # Hello! This is where you manage which Jekyll version is used to run.
33
# # When you want to use a different version, change it below, save the
44
# # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
@@ -34,3 +34,6 @@
3434
# # install aditional plugins
3535
# gem 'jekyll-seo-tag'
3636

37+
gem "github-pages", group: :jekyll_plugins
38+
gem "jekyll-github-metadata"
39+

_config.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,17 @@
1818
# You can create any custom variable you would like, and they will be accessible
1919
# in the templates via {{ site.myvariable }}.
2020

21-
title: Jesus Sanz - Game Developer / Software Engineer
21+
title: Jesus Sanz
2222
email: jesus@jsanz.dev
2323
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.
24+
Game Developer / Software Engineer
2525
baseurl: "" # the subpath of your site, e.g. /blog
2626
url: "https://jsanz.dev" # the base hostname & protocol for your site, e.g. http://example.com
2727

28-
paginate: 5
29-
paginate_path: "/blog/page:num/"
28+
show_downloads: false
29+
30+
#paginate: 5
31+
#paginate_path: "/blog/page:num/"
3032

3133

3234
# supported colors: green, red, orange, blue, cyan, pink, teal, yellow, indigo, purple
@@ -55,6 +57,7 @@ github_username: jsanzdev
5557
remote_theme: pages-themes/architect@v0.2.0
5658
plugins:
5759
- jekyll-remote-theme
60+
- "jekyll-github-metadata"
5861

5962
# Exclude from processing.
6063
# The following items will not be processed, by default.

_layouts/default.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset='utf-8'>
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
7+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}" media="screen" type="text/css">
8+
<link rel="stylesheet" href="{{ '/assets/css/print.css' | relative_url }}" media="print" type="text/css">
9+
10+
<!--[if lt IE 9]>
11+
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
14+
{% seo %}
15+
16+
{% include head-custom.html %}
17+
</head>
18+
19+
<body>
20+
<header>
21+
<div class="inner">
22+
<a href="{{ '/' | absolute_url }}">
23+
<h1>{{ site.title | default: site.description }}</h1>
24+
</a>
25+
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
26+
{% if site.github.is_project_page %}
27+
<a href="{{ site.github.repository_url }}" class="button"><small>View project on</small> GitHub</a>
28+
{% endif %}
29+
{% if site.github.is_user_page %}
30+
<a href="{{ site.github.owner_url }}" class="button"><small>Follow me on</small> GitHub</a>
31+
{% endif %}
32+
</div>
33+
</header>
34+
35+
<div id="content-wrapper">
36+
<div class="inner clearfix">
37+
<section id="main-content">
38+
{{ content }}
39+
</section>
40+
41+
<aside id="sidebar">
42+
{% if site.show_downloads %}
43+
<a href="{{ site.github.zip_url }}" class="button">
44+
<small>Download</small>
45+
.zip file
46+
</a>
47+
<a href="{{ site.github.tar_url }}" class="button">
48+
<small>Download</small>
49+
.tar.gz file
50+
</a>
51+
{% endif %}
52+
53+
{% if site.github.is_project_page %}
54+
<p class="repo-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</p>
55+
{% endif %}
56+
57+
<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</p>
58+
</aside>
59+
</div>
60+
</div>
61+
62+
</body>
63+
</html>

_posts/2021-03-17-welcome-to-jekyll.markdown

Lines changed: 0 additions & 29 deletions
This file was deleted.

about.markdown

Lines changed: 0 additions & 18 deletions
This file was deleted.

index.markdown

Lines changed: 0 additions & 9 deletions
This file was deleted.

index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Hello World!
2+
3+
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.

projects.markdown

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)