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

github.com/cssandstuff/hugo-theme-winning.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcssandstuff <github@cssandstuff.com>2018-07-06 06:25:57 +0300
committercssandstuff <github@cssandstuff.com>2018-07-06 06:25:57 +0300
commit9d923e9a6820f046943a38cb590c08aade2eab16 (patch)
tree44ac4cfa89d3cbc18d21a7be54138de91f8960e3 /exampleSite
parent7abafb76edfb908b131b93ba690150a5d13b8651 (diff)
changed name back
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/config.toml7
-rw-r--r--exampleSite/content/_index.md72
-rw-r--r--exampleSite/generatepdf.js17
-rw-r--r--exampleSite/package.json28
-rw-r--r--exampleSite/postcss.config.js7
5 files changed, 131 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..05599c8
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,7 @@
+disableKinds = ["RSS"]
+defaultContentLanguage = "en"
+enableRobotsTXT = true
+languageCode = "en-us"
+theme = "winning"
+title = "CV Tim Clulow"
+[taxonomies] \ No newline at end of file
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
new file mode 100644
index 0000000..715f773
--- /dev/null
+++ b/exampleSite/content/_index.md
@@ -0,0 +1,72 @@
+---
+title: CV
+---
+# Your name here
+Bacon ipsum dolor amet bacon filet mignon bresaola, pork burgdoggen shankle doner. Tenderloin short loin bresaola landjaeger porchetta. Swine venison salami brisket ground round biltong chuck short ribs ribeye shoulder leberkas sausage shankle. Pork chop ground round ball tip picanha. Pig salami biltong buffalo sausage rump ball tip. Pork loin shoulder biltong, meatloaf leberkas cupim chuck.
+
+{{% grid %}}
+
+{{% column -span-cols-6 -m-right-2 %}}
+## Professional Experience
+###### *May 2015 - Present*
+### Company A — UI/UX Lead
+
+Bacon ipsum dolor amet bacon filet mignon bresaola, pork burgdoggen shankle doner. Tenderloin short loin bresaola landjaeger porchetta. Swine venison salami brisket ground round biltong chuck short ribs ribeye shoulder leberkas sausage shankle. Pork chop ground round ball tip picanha. Pig salami biltong buffalo sausage rump ball tip. Pork loin shoulder biltong, meatloaf leberkas cupim chuck.
+
+* Leberkas sausage shankle. Pork chop ground round ball tip picanha.
+* Gamet bacon filet mignon bresaola, pork burgdoggen shankle doner. Tenderloin
+* Pig salami biltong buffalo sausage rump ball tip. Pork loin shoulder biltong
+
+
+###### *September 2010 - April 2015*
+### Company B — Managing Director/Owner
+
+Swine venison salami brisket ground round biltong chuck short ribs ribeye
+
+* Leberkas sausage shankle. Pork chop ground round ball tip picanha.
+* Pig salami biltong buffalo sausage rump ball tip. Pork loin shoulder biltong
+
+
+{{% /column %}}
+
+{{% column -span-cols-4 -p-left-3 %}}
+#### Fluent with
+ * Sketch
+ * Adobe Illustrator
+ * Photoshop
+ * Fireworks
+ * HTML5
+ * CSS3, grid and flexbox
+ * SVG animation & GSAP
+ * PostCSS & Sass
+
+#### Familiar with
+ * Node.js
+ * Riot.Js
+ * Hugo.io (Static site generator)
+
+#### Interested in
+ * Web components
+ * Svelte + Sapper
+ * WebVR / A-Frame
+
+
+#### Other Info
+{{% dd %}}
+- **Language:**
+ 1. I can speak English
+- **Napoleon:**
+ 1. I have numchuck skills too
+{{% /dd %}}
+
+
+## Hobbies/Interests
+I have interests...
+
+{{% printonly %}}
+## References
+Please contact me at [youremail@email.com](mailto:youremail@email.com) for references.
+{{% /printonly %}}
+
+{{% /column %}}
+{{% /grid %}}
diff --git a/exampleSite/generatepdf.js b/exampleSite/generatepdf.js
new file mode 100644
index 0000000..e85e6e3
--- /dev/null
+++ b/exampleSite/generatepdf.js
@@ -0,0 +1,17 @@
+var fs = require('fs');
+var pdf = require('html-pdf');
+var html = fs.readFileSync('./docs/index.html', 'utf8');
+var options = {
+ "format": 'A4',
+ "border": {
+ "top": "1cm", // default is 0, units: mm, cm, in, px
+ "right": "3cm",
+ "bottom": "2cm",
+ "left": "3cm"
+ }
+ };
+
+pdf.create(html, options).toFile('./themes/winning/static/assets/cv.pdf', function(err, res) {
+ if (err) return console.log(err);
+ console.log(res); // { filename: '/app/businesscard.pdf' }
+}); \ No newline at end of file
diff --git a/exampleSite/package.json b/exampleSite/package.json
new file mode 100644
index 0000000..4b10829
--- /dev/null
+++ b/exampleSite/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "cv",
+ "version": "1.0.0",
+ "description": "",
+ "main": "generatepdf.js",
+ "directories": {
+ "doc": "docs"
+ },
+ "scripts": {
+ "start": "hugo serve -d docs",
+ "minifycss": "postcss ./themes/winning/static/css/main.css > ./docs/css/main.min.css && postcss ./themes/winning/static/css/belmu.css > ./docs/css/belmu.min.css",
+ "stage": "HUGO_ENV=production npm start | npm run minifycss",
+ "build": "HUGO_ENV=production hugo -d docs && npm run minifycss"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://cssandstuff@github.com/cssandstuff/hugo-theme-winning.git"
+ },
+ "author": "",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/cssandstuff/hugo-theme-winning/issues"
+ },
+ "homepage": "https://github.com/cssandstuff/cv#readme",
+ "devDependencies": {
+ "cssnano": "^3.10.0"
+ }
+}
diff --git a/exampleSite/postcss.config.js b/exampleSite/postcss.config.js
new file mode 100644
index 0000000..ffb2269
--- /dev/null
+++ b/exampleSite/postcss.config.js
@@ -0,0 +1,7 @@
+module.exports = {
+ plugins: [
+ require('cssnano')({
+ preset: 'default',
+ }),
+ ],
+};