Release 2.0.8 : New `readable` theme
Includes support for new /links folder in the template directory
This commit is contained in:
parent
3305c9d564
commit
b9ed407b12
|
@ -24,7 +24,7 @@ at the [blog post for the project][blog].
|
||||||
|
|
||||||
## Help
|
## Help
|
||||||
```
|
```
|
||||||
Markdown Resume Generator version 2.0.7 by Craig Davis
|
Markdown Resume Generator version 2.0.8 by Craig Davis
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
[options] command [arguments]
|
[options] command [arguments]
|
||||||
|
@ -100,6 +100,8 @@ are a more comfortable with html than markdown, you should use it.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
* __2.0.8__ : New `readable` theme contributed by @ahmadnazir, minor refactor
|
||||||
|
to support a /links directory
|
||||||
* __2.0.7__ : Update composer to use `sunra/php-simple-html-dom-parser` this
|
* __2.0.7__ : Update composer to use `sunra/php-simple-html-dom-parser` this
|
||||||
appears to be better maintained and more popular to close #27
|
appears to be better maintained and more popular to close #27
|
||||||
* __2.0.6__ : Fix empty template list from phar file to close #24
|
* __2.0.6__ : Fix empty template list from phar file to close #24
|
||||||
|
|
BIN
bin/md2resume
BIN
bin/md2resume
Binary file not shown.
|
@ -8,7 +8,7 @@
|
||||||
"html5"
|
"html5"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "2.0.7",
|
"version": "2.0.8",
|
||||||
"selfupdatepath": "://github.com/there4/markdown-resume/raw/master/bin/md2resume",
|
"selfupdatepath": "://github.com/there4/markdown-resume/raw/master/bin/md2resume",
|
||||||
"selfupdateversion": "://github.com/there4/markdown-resume/raw/master/version",
|
"selfupdateversion": "://github.com/there4/markdown-resume/raw/master/version",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer + p {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
|
@ -5,13 +5,15 @@
|
||||||
{{#reload}}
|
{{#reload}}
|
||||||
<meta http-equiv="refresh" content="{{refresh_rate}}">
|
<meta http-equiv="refresh" content="{{refresh_rate}}">
|
||||||
{{/reload}}
|
{{/reload}}
|
||||||
|
|
||||||
<title>{{title}}</title>
|
<title>{{title}}</title>
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
{{{resume}}}
|
|
||||||
|
|
||||||
</body>
|
|
||||||
{{{links}}}
|
{{{links}}}
|
||||||
|
<style type="text/css">
|
||||||
|
{{{style}}}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
{{{resume}}}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<link href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/readable/bootstrap.min.css" rel="stylesheet">
|
<link href="http://netdna.bootstrapcdn.com/bootswatch/3.1.1/readable/bootstrap.min.css" rel="stylesheet">
|
||||||
|
|
Loading…
Reference in New Issue