1
0
mirror of https://github.com/devolitalia/forty-jekyll-theme synced 2025-01-09 14:44:16 +01:00
Commit Graph

306 Commits

Author SHA1 Message Date
coezbek
dab6f58e34
Make social icons more generic and add accessibility (#130)
* Made social icons more configurable and add accessibility

* Paths weren't correct for landing.md

* Support for empty values in social media configuration
2021-03-27 12:43:39 -04:00
Andrew Banchich
8960c1023d
Update README.md 2021-03-26 21:48:04 -04:00
Andrew Banchich
b632cc8831
Update elements.md 2021-03-26 21:45:20 -04:00
Andrew Banchich
f637bcfabd
Create dry-run.yml 2021-03-26 21:38:20 -04:00
Andrew Banchich
d66520f6a7
Update github-pages.yml 2021-03-26 21:35:33 -04:00
Andrew Banchich
4500178281
Update README.md 2021-03-26 21:32:55 -04:00
Andrew Banchich
09ae6fcdf2
Update landing.md 2021-03-26 21:21:45 -04:00
Andrew Banchich
f05d8df044
Update Gemfile 2021-03-26 21:16:32 -04:00
Andrew Banchich
4d8cc97d24
Use GitHub Actions 2021-03-26 20:51:14 -04:00
coezbek
bc7646e202
Update README.md to remove reference to GitLab (#123)
* Update README.md to remove reference to GitLab

Everything is now managed on GitHub.

* Removed issue section
2021-03-26 19:16:44 -04:00
Andrew Banchich
5d49f9588d
Fix broken images 2021-03-26 17:32:23 -04:00
coezbek
f84314e170
When copying link for tiles, also update aria-label with link text (#126) 2021-03-26 17:20:55 -04:00
coezbek
c942cfd71a
Accessibility update on the tile images (#125) 2021-03-26 17:20:21 -04:00
coezbek
c2c4a68209
Don't publish internal files when building (#124) 2021-03-26 17:19:50 -04:00
Andrew Banchich
c8d830a8c3
Update FUNDING.yml 2021-02-04 21:16:06 -05:00
Andrew Banchich
fb0476fa9b
Create FUNDING.yml 2021-01-30 16:15:57 -05:00
Andrew Banchich
f32c24b31c Update URL. 2021-01-30 14:43:51 -05:00
Andrew Banchich
c27d20e21e bump Bundler 2021-01-30 13:26:48 -05:00
Andrew Banchich
cfec474529
Update landing.md 2021-01-05 22:21:44 -05:00
Andrew Banchich
93c6c135c1
Update landing.md 2021-01-05 22:20:46 -05:00
Andrew Banchich
8870ef4ffe
Update landing.md 2021-01-05 22:19:56 -05:00
Andrew Banchich
db30ea7244
Update landing.md 2021-01-05 22:16:18 -05:00
Andrew Banchich
2c36798f7c
Update landing.md
fix links
2021-01-05 22:14:07 -05:00
Andrew Banchich
a4c4595c7d
Delete build.yml 2020-12-31 22:48:42 -05:00
Andrew Banchich
6e84793b87
Use GitHub Actions (#117) 2020-12-23 19:03:16 -05:00
Andrew Banchich
3d1f264f0c
Merge pull request #116 from NerusSkyhigh/master
remove deprecation warning
2020-12-23 18:29:54 -05:00
NerusSkyhigh
6d8ee0c046 add : null; at the beginning of _sass/libs/_skel.scss to remove deprecation warning 2020-12-20 14:50:28 +01:00
Andrew Banchich
70f9116d4a Update _config.yml 2020-06-27 16:29:06 +00:00
Andrew Banchich
0b9991ca70 fix CSS blur filter due to performance issue in Firefox 2020-05-17 19:41:14 -04:00
Andrew Banchich
379eb6efbf Merge branch 'bugfix' into 'master'
fix padding in blockquotes

Closes #24

See merge request andrewbanchich/forty-jekyll-theme!7
2020-03-04 01:56:36 +00:00
Andrew Banchich
61ce7c2f4b fix padding in blockquotes 2020-03-03 20:54:40 -05:00
Andrew Banchich
5ac81cde14
Merge pull request #102 from tfwyouloveher/patch-1
Fixed tile descriptions
2020-02-22 14:03:36 -05:00
tfwyouloveher
6269d60959
Fixed tile descriptions 2020-02-21 20:39:23 -07:00
Andrew Banchich
c7aafb0a15
Merge pull request #98 from meitar/page-titles
Add page titles to `<title>` element, fix relative URLs when custom permalinks are used.
2020-02-01 16:30:17 -05:00
Meitar M
4e4f981b8c
Fix bug where some pages where not shown as tiles.
This commit refactors the `tiles.html` include file so that when the
`site.tiles-source` is pages, pages with `show_tile: false` set in their
Front Matter are not counted as having been shown. Prior to this commit,
such pages were iterated over in the `for` loop, consuming a loop
iteration from the `site.tiles-count` counter.

Put another way, say you have set `tiles-count` to 6, and you have a
total of 10 pages. Of these ten pages, six have `show_tile` set to
`false`. The natural expectation would be that the home page layout
would display four tiles (10 - 6 = 4), but in fact, the exact number of
page tiles shown would depend on the specific lexicographical ordering
of the `site.html_pages` array, which could result in fewer than four
page tiles being shown.

This commit fixes the issue by excluding pages with `show_tile` set to
`false` first, and only then iterating over the remaining pages.
2020-01-31 14:21:40 -05:00
Meitar M
8c70ecf005
Fix invalid HTML caused by doubly-nested <p> element. 2020-01-31 13:27:27 -05:00
Meitar M
b8721c353e
Fix relative paths to images when a permalink is used.
This commit uses the Jekyll `link` tag to correctly construct the URL to
images with otherwise relative paths. Without this logic, the images
would only load when the landing page's permalink was not altered by the
user. For example, if the permalink is changed to `get-started` in the
Jekyll Front Matter, the relative URLs would become:

    get-started/assets/images/pic08.jpg

However, since the `get-started` path doesn't really exist, this would
fail to load the image.

As of Jekyll 4.0, the `link` tag is safe to use without prepending
`site.baseurl`, so this code works in all situations.
2020-01-31 13:01:47 -05:00
Meitar M
033cfa2c44
Add page titles to <title> element. 2020-01-30 19:20:58 -05:00
Andrew Banchich
04f5e6f9f6 Update .gitlab-ci.yml 2020-01-13 01:46:18 +00:00
Andrew Banchich
17d8fd9a3f Update forty_jekyll_theme.gemspec 2020-01-13 01:46:04 +00:00
Andrew Banchich
5a2002e002 Update .gitlab-ci.yml 2020-01-13 01:42:32 +00:00
Andrew Banchich
da9962859b Merge branch 'bugfix' into 'master'
Fix bug causing non-HTML pages to be displayed in tiles.

Closes #22

See merge request andrewbanchich/forty-jekyll-theme!6
2020-01-13 01:36:21 +00:00
Andrew Banchich
49ab386a3d Fix bug causing non-HTML pages to be displayed in tiles. 2020-01-12 20:31:35 -05:00
Andrew Banchich
2a58340b3a Update forty_jekyll_theme.gemspec 2019-09-15 18:52:07 +00:00
Andrew Banchich
8f27899858 Merge branch 'patch-1' into 'master'
Fixed a typo

See merge request andrewbanchich/forty-jekyll-theme!5
2019-06-15 12:03:35 +00:00
Louis
da38a9ffe6 Fixed a typo 2019-06-13 02:38:58 +00:00
Andrew Banchich
4f5766eee6 Fix #8 2018-09-09 17:13:48 +00:00
Andrew Banchich
10a9b45f6e Add flexibility to end tiles 2018-09-09 17:04:43 +00:00
Andrew Banchich
548b8385f2 Fix Home, All Posts, and 404 pages displaying in tiles 2018-09-09 16:53:34 +00:00
Andrew Banchich
9ecf46b951 Update README.md 2018-08-25 16:36:16 +00:00