Skip to content

Commit b53e20f

Browse files
committed
add site
1 parent b2ac47d commit b53e20f

File tree

135 files changed

+4344
-1650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+4344
-1650
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor
6+
Odin.ai

404.html

+18-56
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,23 @@
1-
<!DOCTYPE html>
2-
<html lang=""><head>
3-
<meta charset="utf-8">
4-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1+
---
2+
permalink: /404
3+
layout: default
4+
---
55

6-
<title>404 Page not found</title>
7-
<meta name="description" content="">
8-
<meta name="author" content=''>
6+
{% include header.html %}
97

10-
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap" rel="stylesheet">
11-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
12-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous">
138

14-
15-
<link rel="stylesheet" href="/pool/sass/researcher.min.css">
16-
17-
18-
19-
20-
21-
22-
</head>
23-
24-
<body><div class="container mt-5">
25-
<nav class="navbar navbar-expand-sm flex-column flex-sm-row text-nowrap p-0">
26-
<a class="navbar-brand mx-0 mr-sm-auto" href="https://orelvis15.github.io/pool" title="Ore pool web">
27-
28-
<img src="https://orelvis15.github.io/pool/logo.png" alt="logo" height="50px" width="50px" style="border-radius: 50%;">
29-
30-
Ore pool web
31-
</a>
32-
<div class="navbar-nav flex-row flex-wrap justify-content-center">
33-
34-
<a class="nav-item nav-link" href="/pool/" title="Inicio">
35-
Inicio
36-
</a>
37-
<span class="nav-item navbar-text mx-1">/</span>
38-
<a class="nav-item nav-link" href="/pool/about" title="Acerca de mí">
39-
Acerca de mí
40-
</a>
9+
<div class="container text-center">
10+
<div class="columns">
11+
<div class="column col-6 col-mx-auto col-sm-12 negative-m-xs">
12+
<div class="card">
13+
<div class="card-body">
14+
<h1 class="text-bold">404</h1>
15+
<p><strong>Page not found jaja :(</strong></p>
16+
<p>The requested page could not be found.</p>
4117
</div>
42-
</nav>
43-
</div>
44-
<hr><div id="content">
45-
<div class="container">
46-
<h1>404 Error</h1>
47-
<p>Page does not exist.</p>
48-
</div>
49-
50-
</div><div id="footer" class="mb-5">
51-
<hr>
52-
<div class="container text-center">
53-
54-
</div>
55-
56-
<div class="container text-center">
57-
<a href="https://github.com/orelvis15" title="by Orelvis Lago"><small>by Orelvis Lago</small></a>
18+
</div>
5819
</div>
59-
60-
</div></body>
61-
</html>
20+
</div>
21+
22+
23+
</div>

Gemfile

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
gem "jekyll-last-modified-at"
20+
21+
end
22+
23+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24+
# and associated library.
25+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
26+
gem "tzinfo", "~> 1.2"
27+
gem "tzinfo-data"
28+
end
29+
30+
# Performance-booster for watching directories on Windows
31+
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?

Gemfile.lock

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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+
eventmachine (1.2.7-x64-mingw32)
13+
ffi (1.11.1)
14+
ffi (1.11.1-x64-mingw32)
15+
forwardable-extended (2.6.0)
16+
http_parser.rb (0.6.0)
17+
i18n (1.7.0)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (4.0.0)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (>= 0.9.5, < 2)
24+
jekyll-sass-converter (~> 2.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 2.1)
27+
kramdown-parser-gfm (~> 1.0)
28+
liquid (~> 4.0)
29+
mercenary (~> 0.3.3)
30+
pathutil (~> 0.9)
31+
rouge (~> 3.0)
32+
safe_yaml (~> 1.0)
33+
terminal-table (~> 1.8)
34+
jekyll-feed (0.12.1)
35+
jekyll (>= 3.7, < 5.0)
36+
jekyll-last-modified-at (1.1.0)
37+
jekyll (>= 3.7, < 5.0)
38+
posix-spawn (~> 0.3.9)
39+
jekyll-sass-converter (2.0.1)
40+
sassc (> 2.0.1, < 3.0)
41+
jekyll-seo-tag (2.6.1)
42+
jekyll (>= 3.3, < 5.0)
43+
jekyll-watch (2.2.1)
44+
listen (~> 3.0)
45+
kramdown (2.3.0)
46+
rexml
47+
kramdown-parser-gfm (1.1.0)
48+
kramdown (~> 2.0)
49+
liquid (4.0.3)
50+
listen (3.2.0)
51+
rb-fsevent (~> 0.10, >= 0.10.3)
52+
rb-inotify (~> 0.9, >= 0.9.10)
53+
mercenary (0.3.6)
54+
minima (2.5.1)
55+
jekyll (>= 3.5, < 5.0)
56+
jekyll-feed (~> 0.9)
57+
jekyll-seo-tag (~> 2.1)
58+
pathutil (0.16.2)
59+
forwardable-extended (~> 2.6)
60+
posix-spawn (0.3.13)
61+
public_suffix (4.0.1)
62+
rb-fsevent (0.10.3)
63+
rb-inotify (0.10.0)
64+
ffi (~> 1.0)
65+
rexml (3.2.4)
66+
rouge (3.12.0)
67+
safe_yaml (1.0.5)
68+
sassc (2.2.1)
69+
ffi (~> 1.9)
70+
sassc (2.2.1-x64-mingw32)
71+
ffi (~> 1.9)
72+
terminal-table (1.8.0)
73+
unicode-display_width (~> 1.1, >= 1.1.1)
74+
thread_safe (0.3.6)
75+
tzinfo (1.2.5)
76+
thread_safe (~> 0.1)
77+
tzinfo-data (1.2019.3)
78+
tzinfo (>= 1.0.0)
79+
unicode-display_width (1.6.0)
80+
wdm (0.1.1)
81+
82+
PLATFORMS
83+
ruby
84+
x64-mingw32
85+
86+
DEPENDENCIES
87+
jekyll (~> 4.0.0)
88+
jekyll-feed (~> 0.12)
89+
jekyll-last-modified-at
90+
minima (~> 2.5)
91+
tzinfo (~> 1.2)
92+
tzinfo-data
93+
wdm (~> 0.1.1)
94+
95+
BUNDLED WITH
96+
2.0.2

0 commit comments

Comments
 (0)