Skip to content

Commit e7e3763

Browse files
committed
update baseurl
1 parent 29b99bf commit e7e3763

File tree

4 files changed

+91
-6
lines changed

4 files changed

+91
-6
lines changed

Gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source "https://rubygems.org"
2+
3+
# This will help ensure the proper Jekyll version is running.
4+
gem "jekyll"
5+
6+
group :jekyll_plugins do
7+
gem "jekyll-paginate"
8+
gem "jekyll-seo-tag"
9+
end

Gemfile.lock

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.1)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.10)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.15.5)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.8.0)
15+
i18n (1.12.0)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.3.1)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (>= 2.0, < 4.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3, >= 2.3.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (>= 0.3.6, < 0.5)
28+
pathutil (~> 0.9)
29+
rouge (>= 3.0, < 5.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (>= 1.8, < 4.0)
32+
webrick (~> 1.7)
33+
jekyll-paginate (1.1.0)
34+
jekyll-sass-converter (2.2.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.8.0)
37+
jekyll (>= 3.8, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.4.0)
41+
rexml
42+
kramdown-parser-gfm (1.1.0)
43+
kramdown (~> 2.0)
44+
liquid (4.0.3)
45+
listen (3.7.1)
46+
rb-fsevent (~> 0.10, >= 0.10.3)
47+
rb-inotify (~> 0.9, >= 0.9.10)
48+
mercenary (0.4.0)
49+
pathutil (0.16.2)
50+
forwardable-extended (~> 2.6)
51+
public_suffix (5.0.0)
52+
rb-fsevent (0.11.2)
53+
rb-inotify (0.10.1)
54+
ffi (~> 1.0)
55+
rexml (3.2.5)
56+
rouge (3.30.0)
57+
safe_yaml (1.0.5)
58+
sassc (2.4.0)
59+
ffi (~> 1.9)
60+
terminal-table (3.0.2)
61+
unicode-display_width (>= 1.1.1, < 3)
62+
unicode-display_width (2.3.0)
63+
webrick (1.7.0)
64+
65+
PLATFORMS
66+
x86_64-linux
67+
68+
DEPENDENCIES
69+
jekyll
70+
jekyll-paginate
71+
jekyll-seo-tag
72+
73+
BUNDLED WITH
74+
2.3.22

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ description: > # this means to ignore newlines until "baseurl:"
1010
#baseurl: "/vyaasa" # the subpath of your site, e.g. /blog
1111
url: "http://webjeda.com" # the base hostname & protocol for your site
1212

13+
baseurl: ""
1314
permalink: :title/
1415

1516
# Build settings

_includes/head.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
<meta charset="utf-8">
33
<meta http-equiv="X-UA-Compatible" content="IE=edge">
44
<meta name="viewport" content="width=device-width, initial-scale=1">
5-
{% seo %}
6-
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One%7CSource+Serif+Pro" rel="stylesheet">
7-
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
8-
<link rel="stylesheet" href="{{ "/css/syntax-highlighter.css" | prepend: site.baseurl }}">
5+
{% seo %}
6+
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One%7CSource+Serif+Pro" rel="stylesheet">
7+
<link rel="stylesheet" href="{{ " /css/main.css" | prepend: site.baseurl }}">
8+
<link rel="stylesheet" href="{{ " /css/syntax-highlighter.css" | prepend: site.baseurl }}">
99
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
10-
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
11-
</head>
10+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ " /feed.xml" | prepend:
11+
site.baseurl | prepend: site.url }}">
12+
</head>

0 commit comments

Comments
 (0)