* New Org-HTML-theme!!
@ 2015-04-21 19:58 Fabrice Niessen
2015-04-22 11:45 ` Fabrice Niessen
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Niessen @ 2015-04-21 19:58 UTC (permalink / raw)
To: emacs-orgmode-mXXj517/zsQ
Hello,
I've just published a new theme, called ReadTheOrg, on
https://github.com/fniessen/org-html-themes.
It is a clone of the great Sphinx theme used in the
http://docs.readthedocs.org/en/latest/ site. It gives a beautiful and
professional style to all your Org docs...
Wanna test it right away? Just add the following to your Org files:
--8<---------------cut here---------------start------------->8---
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
--8<---------------cut here---------------end--------------->8---
and export...
#+begin_note
While the original theme shines on mobile devices as well, ReadTheOrg
does not stay completely functional.
I don't have a lot of time to maintain this project due to other
responsibilities. Help is welcome to work on that (and eventually
improve the default structure of the HTML export)!
#+end_note
PS- I also have written a demo page for the themes that provides
a maximal working support of Org mode syntax.
Please see the
https://github.com/fniessen/org-html-themes/blob/master/demo/org-mode-syntax.org
page for full examples of headings, code, admonitions, footnotes, tables
and other details.
Best regards,
Fabrice
--
Fabrice Niessen
Leuven, Belgium
http://www.pirilampo.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: New Org-HTML-theme!!
2015-04-21 19:58 New Org-HTML-theme!! Fabrice Niessen
@ 2015-04-22 11:45 ` Fabrice Niessen
2015-04-22 14:05 ` Jorge A. Alfaro-Murillo
2015-07-21 20:39 ` Grant Rettke
2 siblings, 0 replies; 5+ messages in thread
From: Fabrice Niessen @ 2015-04-22 11:45 UTC (permalink / raw)
To: emacs-orgmode-mXXj517/zsQ
Hello,
Fabrice Niessen wrote:
> I've just published a new theme, called ReadTheOrg, on
> https://github.com/fniessen/org-html-themes.
>
> It is a clone of the great Sphinx theme used in the
> http://docs.readthedocs.org/en/latest/ site. It gives a beautiful and
> professional style to all your Org docs...
>
> Wanna test it right away? Just add the following to your Org files:
>
> #+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
> #+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
> #+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
>
> and export...
Ooops! *You need the CSS* as well, hence:
--8<---------------cut here---------------start------------->8---
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
--8<---------------cut here---------------end--------------->8---
> Please see the
> https://github.com/fniessen/org-html-themes/blob/master/demo/org-mode-syntax.org
> page for full examples of headings, code, admonitions, footnotes, tables
> and other details.
Best regards,
Fabrice
--
Fabrice Niessen
Leuven, Belgium
http://www.pirilampo.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: New Org-HTML-theme!!
2015-04-21 19:58 New Org-HTML-theme!! Fabrice Niessen
2015-04-22 11:45 ` Fabrice Niessen
@ 2015-04-22 14:05 ` Jorge A. Alfaro-Murillo
2015-07-21 20:39 ` Grant Rettke
2 siblings, 0 replies; 5+ messages in thread
From: Jorge A. Alfaro-Murillo @ 2015-04-22 14:05 UTC (permalink / raw)
To: emacs-orgmode
Fabrice Niessen writes:
> I've just published a new theme, called ReadTheOrg, on
> https://github.com/fniessen/org-html-themes.
Thank you very much! I just tried it and it is very nice.
--
Jorge.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: New Org-HTML-theme!!
2015-04-21 19:58 New Org-HTML-theme!! Fabrice Niessen
2015-04-22 11:45 ` Fabrice Niessen
2015-04-22 14:05 ` Jorge A. Alfaro-Murillo
@ 2015-07-21 20:39 ` Grant Rettke
2015-07-22 0:22 ` Thomas S. Dye
2 siblings, 1 reply; 5+ messages in thread
From: Grant Rettke @ 2015-07-21 20:39 UTC (permalink / raw)
To: Fabrice Niessen; +Cc: emacs-orgmode@gnu.org
Very nice.
Grant Rettke
--
gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
“All creativity is an extended form of a joke.” --Kay
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson
On Tue, Apr 21, 2015 at 2:58 PM, Fabrice Niessen <fni-news@pirilampo.org> wrote:
> Hello,
>
> I've just published a new theme, called ReadTheOrg, on
> https://github.com/fniessen/org-html-themes.
>
> It is a clone of the great Sphinx theme used in the
> http://docs.readthedocs.org/en/latest/ site. It gives a beautiful and
> professional style to all your Org docs...
>
> Wanna test it right away? Just add the following to your Org files:
>
> --8<---------------cut here---------------start------------->8---
> #+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
> #+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
> #+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
> --8<---------------cut here---------------end--------------->8---
>
> and export...
>
> #+begin_note
> While the original theme shines on mobile devices as well, ReadTheOrg
> does not stay completely functional.
>
> I don't have a lot of time to maintain this project due to other
> responsibilities. Help is welcome to work on that (and eventually
> improve the default structure of the HTML export)!
> #+end_note
>
> PS- I also have written a demo page for the themes that provides
> a maximal working support of Org mode syntax.
>
> Please see the
> https://github.com/fniessen/org-html-themes/blob/master/demo/org-mode-syntax.org
> page for full examples of headings, code, admonitions, footnotes, tables
> and other details.
>
> Best regards,
> Fabrice
>
> --
> Fabrice Niessen
> Leuven, Belgium
> http://www.pirilampo.org/
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: New Org-HTML-theme!!
2015-07-21 20:39 ` Grant Rettke
@ 2015-07-22 0:22 ` Thomas S. Dye
0 siblings, 0 replies; 5+ messages in thread
From: Thomas S. Dye @ 2015-07-22 0:22 UTC (permalink / raw)
To: Grant Rettke; +Cc: Fabrice Niessen, emacs-orgmode@gnu.org
Yes, I agree. Extremely useful.
Tom
Grant Rettke <gcr@wisdomandwonder.com> writes:
> Very nice.
> Grant Rettke
--
Thomas S. Dye
http://www.tsdye.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-22 0:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-21 19:58 New Org-HTML-theme!! Fabrice Niessen
2015-04-22 11:45 ` Fabrice Niessen
2015-04-22 14:05 ` Jorge A. Alfaro-Murillo
2015-07-21 20:39 ` Grant Rettke
2015-07-22 0:22 ` Thomas S. Dye
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).