diff --git a/themes/hello-world/templates/doc.xml b/themes/hello-world/templates/doc.xml index f92ec7a..549f02c 100644 --- a/themes/hello-world/templates/doc.xml +++ b/themes/hello-world/templates/doc.xml @@ -7,8 +7,8 @@ Uses the MS Word 2003 XML format. - {{ r.basics.name }} - {{ r.basics.name }} + {{ r.name }} + {{ r.name }} 1 2 2015-10-08T04:10:00Z @@ -438,7 +438,7 @@ Uses the MS Word 2003 XML format. - Hello, world! My name is {{ r.basics.name }}. + Hello, world! My name is {{ r.name }}. diff --git a/themes/hello-world/templates/html.html b/themes/hello-world/templates/html.html index d23a17f..ed47ba5 100644 --- a/themes/hello-world/templates/html.html +++ b/themes/hello-world/templates/html.html @@ -5,10 +5,10 @@ - {{ r.basics.name }} + {{ r.name }} -

Hello, world! My name is {{ r.basics.name }}

+

Hello, world! My name is {{ r.name }}

diff --git a/themes/hello-world/templates/md.txt b/themes/hello-world/templates/md.txt index 24ac0bf..ffd7bb3 100644 --- a/themes/hello-world/templates/md.txt +++ b/themes/hello-world/templates/md.txt @@ -4,4 +4,4 @@ A Markdown resume template for FluentCV's "hello-world" theme. #} -# Hello, world! My name is {{ r.basics.name }}. +# Hello, world! My name is {{ r.name }}. diff --git a/themes/hello-world/templates/pdf.html b/themes/hello-world/templates/pdf.html index c005e5f..c80540e 100644 --- a/themes/hello-world/templates/pdf.html +++ b/themes/hello-world/templates/pdf.html @@ -5,10 +5,10 @@ - {{ r.basics.name }} + {{ r.name }} -

Hello, world! My name is {{ r.basics.name }}

+

Hello, world! My name is {{ r.name }}

diff --git a/themes/hello-world/templates/txt.txt b/themes/hello-world/templates/txt.txt index 05ea555..7af91ed 100644 --- a/themes/hello-world/templates/txt.txt +++ b/themes/hello-world/templates/txt.txt @@ -1,4 +1,4 @@ {# A simple-as-possible plain TXT resume template for the "Hello World" theme. #} -Hello, world! My name is {{ r.basics.name }}. +Hello, world! My name is {{ r.name }}.