Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Kiely <jerry@cowboysmall.com>2019-11-06 04:47:04 +0300
committerJerry Kiely <jerry@cowboysmall.com>2019-11-06 04:47:04 +0300
commit75a0c50ce0c146d233fe3b62bf25ed65650f2c95 (patch)
treed6d12d4d77f6218dd17781255daa65d3b0c2f42b
parentc185ec7954ef45805a06f51a7fc557cd6dc502a8 (diff)
some cleanup
-rw-r--r--README.md5
-rw-r--r--layouts/partials/contact.html4
-rw-r--r--layouts/partials/experience.html3
-rw-r--r--theme.toml6
4 files changed, 8 insertions, 10 deletions
diff --git a/README.md b/README.md
index 3e72d26..b72b888 100644
--- a/README.md
+++ b/README.md
@@ -37,11 +37,9 @@ designed for developers by Xiaoying Riley.
-<!--
## Demo
You can see it in action on [Hugo Themes site](http://themes.gohugo.io/theme/hugo-devresume-theme/).
--->
@@ -63,7 +61,6 @@ You can see it in action on [Hugo Themes site](http://themes.gohugo.io/theme/hug
-
## Installation
Within the root of your Hugo project execute the following:
@@ -77,8 +74,6 @@ Within the root of your Hugo project execute the following:
-
-
## Getting Started
After successful installation as a minimum you need to take the following steps:
diff --git a/layouts/partials/contact.html b/layouts/partials/contact.html
index 30147b6..4ae4319 100644
--- a/layouts/partials/contact.html
+++ b/layouts/partials/contact.html
@@ -1,8 +1,8 @@
<div class="resume-contact col-12 col-md-6 col-lg-4 col-xl-3">
<ul class="list-unstyled mb-0">
- {{ range .Site.Params.contact.list }}
+ {{ range .Site.Params.contact.list }}
<li class="mb-2"><i class="{{ .style }} {{ .icon }} fa-fw fa-lg mr-2 "></i><a class="resume-link" href="{{ .url }}">{{ .text }}</a></li>
- {{ end }}
+ {{ end }}
<li class="mb-0"><i class="fas fa-map-marker-alt fa-fw fa-lg mr-2"></i>{{ .Site.Params.contact.location }}</li>
</ul>
</div><!--//resume-contact-->
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
index d930f7c..7f19f87 100644
--- a/layouts/partials/experience.html
+++ b/layouts/partials/experience.html
@@ -12,7 +12,10 @@
<p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
<ul class="resume-list">
{{ range .items }}
+ <!--
<li><span class="resume-degree font-weight-bold">{{ .heading }}</span> {{ with .details }}{{ . | markdownify }}{{ end }}</li>
+ -->
+ <li>{{ with .details }}{{ . | markdownify }}{{ end }}</li>
{{ end }}
</ul>
</div>
diff --git a/theme.toml b/theme.toml
index da8e0b8..df3fd94 100644
--- a/theme.toml
+++ b/theme.toml
@@ -3,7 +3,7 @@
name = "DevResume"
license = "MIT"
-licenselink = "//github.com/cowboysmall-tools/hugo-devresume-theme/blob/master/LICENSE"
+licenselink = "//github.com/cowboysmall-tools/hugo-devresume-theme/blob/master/LICENSE.md"
description = "DevResume is a free Bootstrap 4 resume/CV template made for software developers."
homepage = "//github.com/cowboysmall-tools/hugo-devresume-theme"
tags = ["cv", "resume"]
@@ -16,6 +16,6 @@ min_version = "0.41"
# If porting an existing theme
[original]
- name = "Xiaoying Riley"
- homepage = "//github.com/xriley"
+ name = "3rd Wave Media"
+ homepage = "//themes.3rdwavemedia.com/bootstrap-templates/resume/devresume-free-bootstrap-4-resume-cv-template-for-developers/"
repo = "//github.com/xriley/DevResume-Theme"