File tree 8 files changed +19
-11
lines changed
8 files changed +19
-11
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ gem "minima", "~> 2.5"
17
17
group :jekyll_plugins do
18
18
gem "jekyll-feed" , "~> 0.12"
19
19
gem "jekyll-paginate"
20
+ gem "jekyll-last-modified-at"
20
21
gem "jekyll-sitemap"
21
22
end
22
23
Original file line number Diff line number Diff line change 31
31
terminal-table (~> 2.0 )
32
32
jekyll-feed (0.15.1 )
33
33
jekyll (>= 3.7 , < 5.0 )
34
+ jekyll-last-modified-at (1.3.0 )
35
+ jekyll (>= 3.7 , < 5.0 )
36
+ posix-spawn (~> 0.3.9 )
34
37
jekyll-paginate (1.1.0 )
35
38
jekyll-sass-converter (2.1.0 )
36
39
sassc (> 2.0.1 , < 3.0 )
55
58
jekyll-seo-tag (~> 2.1 )
56
59
pathutil (0.16.2 )
57
60
forwardable-extended (~> 2.6 )
61
+ posix-spawn (0.3.15 )
58
62
public_suffix (4.0.6 )
59
63
rb-fsevent (0.10.4 )
60
64
rb-inotify (0.10.1 )
@@ -76,6 +80,7 @@ PLATFORMS
76
80
DEPENDENCIES
77
81
jekyll (~> 4.2.0 )
78
82
jekyll-feed (~> 0.12 )
83
+ jekyll-last-modified-at
79
84
jekyll-paginate
80
85
jekyll-sitemap
81
86
minima (~> 2.5 )
@@ -84,4 +89,4 @@ DEPENDENCIES
84
89
wdm (~> 0.1.1 )
85
90
86
91
BUNDLED WITH
87
- 2.2.19
92
+ 2.2.22
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ headings:
16
16
plugins :
17
17
- jekyll-feed
18
18
- jekyll-paginate
19
+ - jekyll-last-modified-at
19
20
- jekyll-sitemap
20
21
exclude :
21
22
- Gemfile
@@ -36,7 +37,7 @@ defaults:
36
37
type : " authors"
37
38
values :
38
39
layout : " author"
39
- permalink : /:collection/:name
40
+ permalink : /:collection/:name/
40
41
-
41
42
scope :
42
43
type : javadocs
@@ -54,13 +55,13 @@ defaults:
54
55
type : versions
55
56
values :
56
57
layout : versions
57
- permalink : versions/:categories/:slug
58
+ permalink : versions/:categories/:slug.html
58
59
-
59
60
scope :
60
61
type : artifacts
61
62
values :
62
63
layout : artifact
63
- permalink : :collection/:categories/:slug
64
+ permalink : :collection/:categories/:slug.html
64
65
65
66
collections :
66
67
authors :
Original file line number Diff line number Diff line change 1
1
2
2
< h2 >
3
3
{% if include.linked %}
4
- < a href ="{{ include.author.url }}.html ">
4
+ < a href ="{{ include.author.url }} ">
5
5
{% endif %}
6
6
{{ include.author.name }}
7
7
{% if include.linked %}
Original file line number Diff line number Diff line change @@ -243,10 +243,10 @@ <h3 class="artifact-name" id="{{component.artifact}}">{{ name_pretty }}</h3>
243
243
{% include downloads/final-section.html %}
244
244
< hr />
245
245
{% if page.next.url %}
246
- < a href ="{{page.next.url }}.html "> Next Version</ a >
246
+ < a href ="{{page.next.url }} "> Next Version</ a >
247
247
{% endif %}
248
248
{% if page.previous.url %}
249
- < a href ="{{page.previous.url }}.html "> Previous Version</ a >
249
+ < a href ="{{page.previous.url }} "> Previous Version</ a >
250
250
{% endif %}
251
251
252
252
{%endcapture%}
@@ -257,7 +257,7 @@ <h3 class="artifact-name" id="{{component.artifact}}">{{ name_pretty }}</h3>
257
257
< strong > Version:</ strong > {{page.version}} {% if page.product == 'odfe' %}(Open Distro for Elasticsearch){% endif %}< br />
258
258
< strong > Release Date:</ strong > {{ page.date | date: "%b %d, %Y" }}< br />
259
259
< a href ="{{page.release_notes}} "> Release Notes</ a > < br />
260
- < a href ="{{page.url}}.html "> Version Permalink</ a >
260
+ < a href ="{{page.url}} "> Version Permalink</ a >
261
261
< hr />
262
262
< ul >
263
263
{% for section in page.sections %}
Original file line number Diff line number Diff line change 6
6
7
7
< ul >
8
8
{% for author in site.authors %}
9
- < li > < a href ="{{ author.url }}.html "> {{ author.name }}</ a > </ li >
9
+ < li > < a href ="{{ author.url }} "> {{ author.name }}</ a > </ li >
10
10
{% endfor %}
11
11
</ ul >
Original file line number Diff line number Diff line change 2
2
layout : none
3
3
---
4
4
User-agent: *
5
- Disallow: /docs/javadoc/
5
+ Disallow: /docs/javadoc*
6
+ Disallow: /javadocs/
6
7
Sitemap: {{ site .url }}/sitemap-index.xml
Original file line number Diff line number Diff line change 4
4
< ul >
5
5
{% assign versions = site.versions | sort: 'date' | reverse %}
6
6
{% for version in versions %}
7
- < li > < a href ="{{ version.url }}.html ">
7
+ < li > < a href ="{{ version.url }} ">
8
8
{% if version.product == 'odfe' %} Open Distro for Elasticsearch {% else %} OpenSearch {%endif%} {{ version.version }}</ a >
9
9
</ li >
10
10
{% endfor %}
You can’t perform that action at this time.
0 commit comments