Skip to content

Commit

Permalink
Merge branch 'v9'
Browse files Browse the repository at this point in the history
  • Loading branch information
qwtel committed Feb 7, 2022
2 parents b51b8a7 + 4d9bca2 commit 5ba8ce1
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 151 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ sitemap: false
* this list will be replaced by the toc
{:toc .large-only}

## v9.1.6
Feb 07 2022
{:.heading.post-date}

* Removed unused clap button HTML tags
* Fixed an issue with using `featured` projects on the `welcome` layout
* Minor style adjustments
* Updated dependencies

## v9.1.5
Nov 30 2021
{:.heading.post-date}
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ titles_from_headings:
collections: true

compress_html:
comments: ["<!-- ", " -->"]
comments: ["<!--", "-->"]
clippings: all
endings: all
ignore:
Expand Down
2 changes: 1 addition & 1 deletion docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ author:
social:
email: [email protected]
rss: {{ site.url }}{{ site.baseurl }}/feed.xml # make sure you provide an absolute URL
download: https://github.com/hydecorp/hydejack/archive/v9.1.5.zip
download: https://github.com/hydecorp/hydejack/archive/v9.1.6.zip
~~~


Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can now also [![Deploy to Netlify][dtn]][nfy]{:.no-mark-external} directly.
{:.note}

[hsc]: https://github.com/hydecorp/hydejack-starter-kit
[src]: https://github.com/hydecorp/hydejack-starter-kit/archive/v9.1.5.zip
[src]: https://github.com/hydecorp/hydejack-starter-kit/archive/v9.1.6.zip
[nfy]: https://app.netlify.com/start/deploy?repository=https://github.com/hydecorp/hydejack-starter-kit
[dtn]: https://www.netlify.com/img/deploy/button.svg

Expand Down Expand Up @@ -93,7 +93,7 @@ For existing sites, you can instead set the `remote_theme` key as follows:

```yml
# file: `_config.yml`
remote_theme: hydecorp/[email protected].5
remote_theme: hydecorp/[email protected].6
```
Make sure the `plugins` list contains `jekyll-include-cache` (create if it doesn't exist):
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ and you have to apply them again. Make sure you've made a backup before overwrit
When building on GitHub Pages, upgrading Hydejack is as simple as setting the `remote_theme` key in `_config.yml` to the desired version.

```yml
remote_theme: hydecorp/[email protected].5
remote_theme: hydecorp/[email protected].6
```
To use the latest version on the `v9` branch on each build, you can use `hydecorp/hydejack@v9`.
Expand Down
30 changes: 0 additions & 30 deletions docs/writing.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,36 +217,6 @@ By adding the `scroll-table` class on a table, the behavior is changed to never
You can add the `scroll-table` class to a markdown table by putting `{:.scroll-table}` in line directly below the table.
To add the class to a HTML table, add the it to the `class` attribute of the `table` tag, e.g. `<table class="scroll-table">`.

### Flip table
Alternatively, you can "flip" (transpose) the table.
Unlike the other approach, this will keep the table head (now the first column) fixed in place.

You can enable this behavior by adding `flip-table` or `flip-table-small` to the CSS classes of the table.
The `-small` version will only enable scrolling on "small" screens (< 1080px wide).

This approach only works on simple tables that have a single `tbody` and an optional `thead`.
{:.note}

Example:

| Default aligned |Left aligned| Center aligned | Right aligned | Default aligned |Left aligned| Center aligned | Right aligned | Default aligned |Left aligned| Center aligned | Right aligned | Default aligned |Left aligned| Center aligned | Right aligned |
|-----------------|:-----------|:---------------:|---------------:|-----------------|:-----------|:---------------:|---------------:|-----------------|:-----------|:---------------:|---------------:|-----------------|:-----------|:---------------:|---------------:|
| First body part |Second cell | Third cell | fourth cell | First body part |Second cell | Third cell | fourth cell | First body part |Second cell | Third cell | fourth cell | First body part |Second cell | Third cell | fourth cell |
| Second line |foo | **strong** | baz | Second line |foo | **strong** | baz | Second line |foo | **strong** | baz | Second line |foo | **strong** | baz |
| Third line |quux | baz | bar | Third line |quux | baz | bar | Third line |quux | baz | bar | Third line |quux | baz | bar |
| 4th line |quux | baz | bar | 4th line |quux | baz | bar | 4th line |quux | baz | bar | 4th line |quux | baz | bar |
| 5th line |quux | baz | bar | 5th line |quux | baz | bar | 5th line |quux | baz | bar | 5th line |quux | baz | bar |
| 6th line |quux | baz | bar | 6th line |quux | baz | bar | 6th line |quux | baz | bar | 6th line |quux | baz | bar |
| 7th line |quux | baz | bar | 7th line |quux | baz | bar | 7th line |quux | baz | bar | 7th line |quux | baz | bar |
| 8th line |quux | baz | bar | 8th line |quux | baz | bar | 8th line |quux | baz | bar | 8th line |quux | baz | bar |
| 9th line |quux | baz | bar | 9th line |quux | baz | bar | 9th line |quux | baz | bar | 9th line |quux | baz | bar |
| 10th line |quux | baz | bar | 10th line |quux | baz | bar | 10th line |quux | baz | bar | 10th line |quux | baz | bar |
| 11th line |quux | baz | bar | 11th line |quux | baz | bar | 11th line |quux | baz | bar | 11th line |quux | baz | bar |
| 12th line |quux | baz | bar | 12th line |quux | baz | bar | 12th line |quux | baz | bar | 12th line |quux | baz | bar |
{:.smaller.flip-table}

You can add the `flip-table` class to a markdown table by putting `{:.flip-table}` in line directly below the table.
To add the class to a HTML table, add the it to the `class` attribute of the `table` tag, e.g. `<table class="flip-table">`.

### Small tables
If a table is small enough to fit the screen even on small screens, you can add the `stretch-table` class
Expand Down
116 changes: 0 additions & 116 deletions example/_posts/2021-02-13-whats-new-in-hydejack-9-1.md

This file was deleted.

0 comments on commit 5ba8ce1

Please sign in to comment.