From 0a80e5481bdb29e8a42bc019e825deb745bf55fc Mon Sep 17 00:00:00 2001 From: devlinjd Date: Thu, 10 Dec 2015 22:27:40 -0500 Subject: [PATCH 1/4] Hello-World: Add latex format. --- themes/hello-world/src/latex.tex | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 themes/hello-world/src/latex.tex diff --git a/themes/hello-world/src/latex.tex b/themes/hello-world/src/latex.tex new file mode 100644 index 0000000..69afd3d --- /dev/null +++ b/themes/hello-world/src/latex.tex @@ -0,0 +1,8 @@ +\documentclass{article} +\title{[[ r.name ]]'s Resume} +\author{[[ r.name ]]} +\date{December 2015} +\begin{document} + \maketitle + Hello world! My name is [[ r.name ]]. +\end{document} From 5cc127a61d74bc94e4f6b5dba24f9e89a1ea6e01 Mon Sep 17 00:00:00 2001 From: devlinjd Date: Fri, 11 Dec 2015 03:42:01 -0500 Subject: [PATCH 2/4] Bump version to 0.6.1-beta. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa2785f..eaf1034 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fluent-themes", - "version": "0.6.0-beta", + "version": "0.6.1-beta", "description": "Resume themes for FluentCV.", "repository": { "type": "git", From 8ef6a74eb2d2ecf01561f0f1eeb78b38f4da9fab Mon Sep 17 00:00:00 2001 From: devlinjd Date: Fri, 11 Dec 2015 03:47:16 -0500 Subject: [PATCH 3/4] Add author fields to theme JSON. --- themes/awesome/README.md | 5 +++-- themes/awesome/awesome.json | 4 +++- themes/compact/compact.json | 3 ++- themes/hello-world/hello-world.json | 1 + themes/minimist/minimist.json | 1 + themes/modern/modern.json | 1 + 6 files changed, 11 insertions(+), 4 deletions(-) diff --git a/themes/awesome/README.md b/themes/awesome/README.md index e4d17a0..b375fda 100644 --- a/themes/awesome/README.md +++ b/themes/awesome/README.md @@ -1,7 +1,7 @@ Theme: Awesome ============== -An experimental FluentCV theme based on the [Awesome-CV][acv] resume -template for LaTeX. +An experimental FluentCV theme based on [Byungjin Park's][author] +[Awesome-CV][acv] resume template for LaTeX. ## Use @@ -36,3 +36,4 @@ Themes are licensed under MIT. See [LICENSE.md][lic]. [desk]: http://fluentcv.com [cli]: https://github.com/fluentdesk/fluentcv [lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md +[author]: https://github.com/posquit0 diff --git a/themes/awesome/awesome.json b/themes/awesome/awesome.json index 84fc9f9..b4acfe6 100644 --- a/themes/awesome/awesome.json +++ b/themes/awesome/awesome.json @@ -1,7 +1,9 @@ { "title": "compact", - "description": "A FluentCV résumé theme based on Awesome-CV for LaTeX.", + "description": "A technical résumé theme based on Awesome-CV for LaTeX.", "engine": "underscore", + "url": "https://github.com/posquit0/Awesome-CV", + "author": "Byungjin Park (http://www.posquit0.com)", "delimeters": { "interpolate": "\\[\\[([\\s\\S]+?)\\]\\]", "escape": "\\[\\=([\\s\\S]+?)\\]\\]", diff --git a/themes/compact/compact.json b/themes/compact/compact.json index e371db1..e6887cd 100644 --- a/themes/compact/compact.json +++ b/themes/compact/compact.json @@ -1,5 +1,6 @@ { "title": "hello-world", - "description": "An example 'Hello, World!' résumé theme for FluentCV.", + "description": "A compact résumé theme for FluentCV.", + "author": "hacksalot ", "engine": "underscore" } diff --git a/themes/hello-world/hello-world.json b/themes/hello-world/hello-world.json index 7d5cbc4..308558c 100644 --- a/themes/hello-world/hello-world.json +++ b/themes/hello-world/hello-world.json @@ -1,5 +1,6 @@ { "title": "minimist", "description": "An unstyled starter résumé theme for FluentCV.", + "author": "hacksalot ", "engine": "handlebars" } diff --git a/themes/minimist/minimist.json b/themes/minimist/minimist.json index b75a1f8..d02993f 100644 --- a/themes/minimist/minimist.json +++ b/themes/minimist/minimist.json @@ -1,5 +1,6 @@ { "title": "awesome", "description": "A visually compact résumé theme for FluentCV.", + "author": "hacksalot ", "engine": "underscore" } diff --git a/themes/modern/modern.json b/themes/modern/modern.json index 25d9369..f56c385 100644 --- a/themes/modern/modern.json +++ b/themes/modern/modern.json @@ -1,5 +1,6 @@ { "title": "modern", "description": "A contemporary resume template suitable for modern technical candidates and employees.", + "author": "hacksalot ", "engine": "underscore" } From 6db017ec2ce7964de03d3ae02614ad6ec7d7d8a1 Mon Sep 17 00:00:00 2001 From: devlinjd Date: Fri, 11 Dec 2015 03:52:12 -0500 Subject: [PATCH 4/4] Update README. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6939987..4be9831 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ fluent-themes Stylized templates for your résumé and/or CV, compatible with [FRESH][f] and [JSON Resume][jrs] formats. -- `awesome`: A technical resume theme based on Awesome-CV. -- `minimist`: A no-frills theme. +- `awesome`: A technical resume theme based on [Awesome-CV][awe]. +- `minimist`: An unstyled barebones theme. - `modern`: A middle of the road theme with a modern look 'n feel. - `hello-world`: A simple-as-possible example theme. -- `compact`: A compact theme. +- `compact`: A visually dense/compact theme. - New themes weekly. ## Install @@ -49,3 +49,4 @@ MIT. See [LICENSE.md][1] for details. [3]: ../LICENSE.md [f]: https://github.com/fluentdesk/FRESCA [jrs]: http://jsonresume.org +[awe]: https://github.com/posquit0/Awesome-CV