Commit graph

128 commits

Author SHA1 Message Date
Luke Rawlins
1ac7a27d76 removed test taxonomies from example site 2020-09-23 21:13:03 -04:00
Luke Rawlins
81e8120a5a initial 2020-09-23 18:33:45 -04:00
Victoria Drake
193dc1a0d3 Add CONTRIBUTING, pin autoprefixer 2020-09-19 15:43:24 -04:00
Tom Willemsen
17161f55a5
Update jQuery from 3.3.1 to 3.5.1 (#243) 2020-08-29 13:56:34 -04:00
Linh T. Tô
b7ecf0c08c
Allow for Custom JavaScript files (#233) 2020-08-08 10:52:35 -04:00
Linh T. Tô
ecb89b781b
#229 cleanup and update bulma (#231)
* Remove extra font files

* Update hard-coded variables

* Upgrade Bulma to v0.9.0
2020-08-05 21:34:59 -04:00
Victoria Drake
8a9baff968 Linkify headings, use scroll-behavior
- Uses the scroll-behavior property to achieve smooth scrolling with
less JS
- Solves anchor link bugs
- Linkifies headings in posts so they can be easily hyperlinked to directly
2020-08-01 19:11:56 -04:00
Victoria Drake
e781be1620 Add example site configuration post, shortcodes
- Hopefully help explain related issues #217, #194

Close #226
2020-07-25 09:57:40 -04:00
Victoria Drake
c4994cc895 Un-markdownify Page titles
- Prevent rendered HTML from showing up in tab and title bar for titles
that use Markdown

Address #219
2020-06-22 12:01:05 -05:00
Victoria Drake
49d52d2091 Add portrait oriented image for testing 2020-06-14 14:38:24 -04:00
Victoria Drake
2263cdb0fa Markdownify post titles 2020-05-31 14:12:41 -04:00
Victoria Drake
9b8389c380 Do not use mockups as screenshot
- Add separate front-page screenshots for Hugo themes guidelines

Close #204
2020-05-17 08:16:13 -04:00
Shea Polansky
0493ee48a7
Fix list element styling (#201) 2020-04-13 13:11:03 +02:00
Victoria Drake
a0578435b6 🌱 Add resources
Fix #196
2020-03-09 21:22:09 -04:00
Victoria Drake
8dfb51cae7 Switch examplesite back to light 2019-12-28 22:36:06 -05:00
Victoria Drake
7a8b8e78b5 Make markdown table dark style less icky (close #189)
Thanks @meeDamian!
2019-12-28 22:07:04 -05:00
Victoria Drake
737a970cb8 Update README and docs 2019-10-01 10:26:30 -04:00
Victoria Drake
1803d84f41 Merge branch 'rmSlash2' of https://github.com/VincentTam/hugo-theme-introduction into VincentTam-rmSlash2 2019-10-01 10:24:13 -04:00
Vincent Tam
8b1684b6c2 Removed trailing spaces and missing newline at EOF (#170) 2019-08-14 14:40:10 +02:00
Victoria Drake
7dbdfe32b9
Update docs build script (#168)
Fix broken asset links for demo Netlify site
2019-08-12 14:06:55 -04:00
Vincent Tam
c0d3f26cfd Remove leading slashes in title 2019-08-07 17:58:22 +02:00
Hanzei
02e39b685f
Rebuild docs 2019-08-07 15:53:02 +02:00
Victoria
c82c92108a Merge branch 'master' of https://github.com/tanohzana/hugo-theme-introduction into tanohzana-master 2019-07-21 19:13:45 -04:00
tanohzana
85a8ffc84b Merge branch 'master' of https://github.com/tanohzana/hugo-theme-introduction 2019-04-14 09:45:30 +02:00
tanohzana
c8b411e2d0 add light-grey background to code snippets 2019-04-14 09:41:26 +02:00
Maximilian Bosche
5712e49125 Order sections on homepage by weigth (#143) 2019-04-10 14:41:06 +02:00
Hanzei
26f9dcc1f1
Replace deprecated RSSLink (#146) 2019-04-10 11:16:17 +02:00
Florian Adonis
f7c56ab219
Update style.sass_7642ba43b3212fd7d7ba324df3b88b0c.content 2019-04-08 07:09:56 +02:00
tanohzana
d050ccb3c8 fix blog share margin 2019-04-06 13:03:17 +02:00
tanohzana
99fb3d499a add a bit of space between social icons 2019-04-06 13:01:04 +02:00
Victoria
b82db49f28 Merge branch 'master' into fix-cors 2019-03-18 15:30:32 -04:00
Victoria
f89d9c5996 Rebuild docs 2019-03-18 15:26:55 -04:00
Victoria
31520b6f78 Try netlify.toml and rel css links 2019-03-18 14:46:00 -04:00
Victoria
632bcd4579
Fix hero sizes (#137)
* Fix hero sizes

- Use proper sections in index.html to comply with bulma styles
- Update default value of header height to "fullheight" (shows navbar)

* Revert unrelated changes
2019-03-15 11:27:09 -04:00
Sascha Mann
7584ca2c4f
Add HTML attributes to social links
* Insert arbitrary HTML attributes to social links via config.toml

(fixes #121)
2019-01-13 22:52:57 +01:00
Maximilian Bosche
819c058865 Added parameter for timeformat (#124) 2019-01-13 09:24:53 +01:00
Alison Presmanes Hill
2c5cfbc4b3 Add fa icon packs (#113)
This PR adds functionality for users to specify which `icon_pack` to use (`fas` or `fab`; see: https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4) in the `config.toml` file, so that users can use the solid icons as well as the brand icons.

```
    [[params.social]]
        url   = "https://twitter.com/"
        icon  = "twitter" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url   = "https://facebook.com/"
        icon  = "facebook-f" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url   = "https://linkedin.com/"
        icon  = "linkedin-in" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url = "mailto:youremail@email.com"  # For a direct email link, use "mailto:test@example.org".
        icon = "paper-plane" # icon name without the 'fa-'
        icon_pack = "fas"
```
2018-12-14 09:32:50 +01:00
Hanzei
5895d84506
Fix font path 2018-11-28 20:19:25 +01:00
Hanzei
dfe920cc2a
Regenerate resources 2018-11-13 11:05:04 +01:00
Hanzei
04f47b3377
Add tests for Hugo 0.50 (#99)
* Add tests for hugo 0.50

* Update docs

* Update resources
2018-10-29 14:43:15 +01:00
Hanzei
6c090cc278
Update docs & Add script to build docs 2018-10-10 15:51:40 +02:00
Hanzei
2267f54d5a
Add test for hugo 0.49.1 (#95) 2018-10-10 15:32:25 +02:00
Kevin Ottens
bab5773e9f Allow to have the fade-in effect only on main page (#78) 2018-09-30 19:32:21 +02:00
Hanzei
7d65d6ca14
Fix baseurl (#86) 2018-09-18 08:36:57 +02:00
Vicky
7bb579950a Fix #81
- Hide date part in posts if no date is given
2018-09-16 12:22:05 +09:00
Vicky
f57db6fc73 Update example content helpfulness
- Indicate which files and templates are used
2018-09-15 12:40:16 +09:00
Vicky
9e66456804 Update English About page 2018-09-15 12:32:10 +09:00
Vicky
ef92cd4822 Merge branch 'next_gen' of https://github.com/Hanzei/hugo-theme-introduction into Hanzei-next_gen 2018-09-03 16:59:49 +09:00
Vicky
03e80406a5 Update README and screenshots 2018-09-03 16:49:47 +09:00
Hanzei
fe57f7d294
Hide generated files via gitattributes
See https://medium.com/@clarkbw/managing-generated-files-in-github-1f1989c09dfd
2018-08-31 10:32:01 +02:00