363 Commits

Author SHA1 Message Date
Tom Johnson
a1bd31f84c Merge pull request #68 from bcourtine/tg-sidebar
Add a button to toggle sidebar and view content in full width
2017-04-10 22:15:34 -07:00
Kai Mindermann M.Sc
e54d966f58 fixes feed.xml href 2017-04-10 18:55:08 +02:00
Kai Mindermann M.Sc
a636bad26b fixes missing alt attribute in titlepage.html
and adds site.time and site.company_name variables
2017-04-10 17:39:15 +02:00
Kai Mindermann M.Sc
fa25a31b51 removes redundant " in news.html 2017-04-10 17:30:15 +02:00
Bo Gao
02f433db84 Fix missing div close tag 2017-03-14 13:24:41 +00:00
Bo Gao
e202813e54 Fix missing div close tag 2017-03-14 13:23:51 +00:00
jasonquick
71fab11052 Remove redundant closing anchor tag 2017-02-24 12:40:30 -05:00
George Hartzell
1d45fd9a11 Whitespace
Neatness counts...  Make the sample table columns line up....
2017-02-14 13:55:28 -08:00
George Hartzell
c1baee6f4a Enable DataTables for Markdown tables
Add a jQuery snippet to decorate any tables between a pair of "marker"
divs with `class=display`.  Credit [here][jq-hack]

Now we can create DataTables using Markdown.

Extend the explanations to include this info.

[jq-hack]: http://www.beardedhacker.com/blog/2015/08/28/add-class-attribute-to-markdown-table/
2017-02-14 13:05:13 -08:00
George Hartzell
0eee5ad0f1 Wordsmith the prose 2017-02-14 11:23:56 -08:00
George Hartzell
8dc46885e1 Use ready function from the default layouts
You don't actually need to include the document ready function in the
page.

The commit updates the document ready function in the default template
to specify the features discussed in the prose and deletes the one that
is embedded in the page itself.
2017-02-14 11:22:13 -08:00
George Hartzell
ec98b67b6f Fix javascript console errors
1. Add necessary closing bits to the doc ready function.
2. Update to current version of DataTables css and js.
2017-02-14 09:32:00 -08:00
tomjohnson1492
06dc9e0e25 fixed content api tooltips demo 2017-02-10 14:24:00 -08:00
Benoît Courtine
5a8d6353e6 Add a button to toggle sidebar and view content in full width (col-md-12). 2017-02-10 11:00:32 +01:00
tomjohnson1492
0152400034 fine tune doc on github api 2017-01-27 07:25:26 -08:00
tomjohnson1492
b468d0682b added instructions for fixing github API errors on auto-rebuild 2017-01-27 07:16:13 -08:00
Tom Johnson
d64080f840 Merge pull request #66 from hartzell/patch-1
Fix closing list item tag (<li> -> </li>)
2017-01-22 19:10:36 -08:00
George Hartzell
feb83939f2 Fix closing list item tag (<li> -> </li>)
I think that this should have been a closing tag, not another opening tag.

Thanks for the wonderful sample site and theme!
2017-01-22 15:56:27 -08:00
tomjohnson1492
9a30b3950a fix erroneous style 2017-01-21 21:38:48 -08:00
Tom Johnson
ba0fbe1928 Merge pull request #58 from Gravatronics/customstyles-hover
Fix :hover selector in customstyles.css
2017-01-21 21:36:08 -08:00
Tom Johnson
bd54f1e8e1 Merge pull request #59 from Gravatronics/customstyles-font-color
Replace invalid font-color with color in customstyles.css
2017-01-21 21:35:59 -08:00
Tom Johnson
1d4a1381c0 Merge pull request #60 from Gravatronics/customstyles-media
Fix concatenation of media queries in customstyles.css
2017-01-21 21:35:50 -08:00
Tom Johnson
7d871c84f2 Merge pull request #61 from hongchangwu/bug/search
Fix post search
2017-01-21 21:35:39 -08:00
Tom Johnson
3466412569 Merge pull request #62 from hartzell/patch-1
Delete extraneous closing paren
2017-01-21 21:35:24 -08:00
Tom Johnson
1b27864df6 Merge pull request #63 from hartzell/patch-2
typo: _congfig.yml -> _config.ym.
2017-01-21 21:34:59 -08:00
Tom Johnson
3b51af7c82 Merge pull request #65 from hartzell/patch-3
Fix sidebar css so arrows change shape when open
2017-01-21 21:33:51 -08:00
George Hartzell
dfe9602384 Sidebar arrows should change content when open
The sidebar arrows should change content when they're open.  There's a small bug in css/customstyles.css that prevents this; other parts of the style use 'active' instead of 'open' so it needs to here too.

This PR fixes it.

Since Font Awesome is already wired in, I think that their carets look nicer.  Here's how:

```
.nav li > a > span:after {
   font-family: FontAwesome;
   content: "\f105";

}
.nav li.active > a > span:after {
   font-family: FontAwesome;
   content: "\f107";
}
```
2017-01-21 18:21:32 -08:00
George Hartzell
0bc5d36def typo: _congfig.yml -> _config.ym. 2017-01-16 10:30:58 -08:00
George Hartzell
a970ff3c0f Delete extraneous closing paren 2017-01-16 10:26:09 -08:00
tomjohnson1492
a7abac476f Merge branch 'gh-pages' of https://github.com/tomjohnson1492/documentation-theme-jekyll into gh-pages 2017-01-10 15:40:45 -08:00
tomjohnson1492
ffb638b2f7 fix formatting error 2017-01-10 15:40:37 -08:00
Hongchang Wu
93e81b9d3f Fix post search 2016-12-30 14:03:23 -05:00
Matthias Schmidt
bc52456062 Fix concatenation of media queries in customstyles.css
When concatenating multiple media queries, only the first `@media` is
necessary.
2016-12-28 21:43:57 +01:00
Matthias Schmidt
eff5496bf4 Replace invalid font-color with color in customstyles.css 2016-12-28 21:35:44 +01:00
Matthias Schmidt
530e7e5f27 Fix :hover selector in customstyles.css 2016-12-28 21:29:12 +01:00
Tom Johnson
82e4157a86 Merge pull request #56 from hongchangwu/gh-pages
Fix edit link for index.html
2016-12-13 19:57:15 -08:00
Hongchang Wu
e4ed2d864d Fix edit link for index.html 2016-12-13 21:41:15 -05:00
tomjohnson1492
4c6b3e36f7 Merge branch 'gh-pages' of https://github.com/tomjohnson1492/documentation-theme-jekyll into gh-pages 2016-12-12 19:59:41 -08:00
tomjohnson1492
771720c7aa Removed readme.txt file because Github made an update that makes it take precedence over the index.html file 2016-12-12 19:59:29 -08:00
Tom Johnson
08e46cd12c Merge pull request #55 from kiwiroy/f/feedback-link
Improve feedback link configuration
2016-12-11 21:54:09 -08:00
Roy Storey
1c3e19209f add conditionals for feedback link properties 2016-12-12 17:29:54 +13:00
tomjohnson1492
3a58266853 updated gemfiles to reduce conflicts 2016-12-06 15:20:09 -08:00
tomjohnson1492
bc30e1ea34 test commit 2016-12-06 09:14:11 -08:00
tomjohnson1492
899868c8a5 fixing typo 2016-12-05 22:48:02 -08:00
Tom Johnson
7790533b31 Merge pull request #53 from tomjoht/patch-1
typo correction
2016-12-05 22:47:02 -08:00
tomjoht
d5b31eb1ab typo correction 2016-12-05 22:46:22 -08:00
tomjohnson1492
59fb8788b8 small edit for demo purposes 2016-12-05 22:44:58 -08:00
tomjohnson1492
0be4165ec8 fixing issue with highlighter -- it was throwing an error for some reason 2016-12-05 22:40:51 -08:00
tomjohnson1492
1963f15a50 updated Gemfile.lock 2016-11-30 09:09:53 -08:00
tomjohnson1492
04a70f0e23 blog fix with tags 2016-11-09 23:17:01 -08:00