Skip to content

Commit

Permalink
new rendition
Browse files Browse the repository at this point in the history
  • Loading branch information
opyate committed Aug 6, 2017
1 parent 7a13c07 commit 3e1ac9f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: new run
.PHONY: new run publish

all: run

Expand All @@ -7,3 +7,6 @@ new:

run:
@./run.sh

publish:
@./publish.sh
7 changes: 6 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -303,4 +303,9 @@ a.post-tag {
color: #111 !important; }

#juan-m-uys::before {
content: "Curriculum Vitae of "; } }
content: "Curriculum Vitae of "; }

article p:first-of-type {
display: none; }
article ul:first-of-type {
display: none; } }
9 changes: 7 additions & 2 deletions cv.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<p><strong>Table of Contents</strong></p>

<ul>
<li><a href="#curriculum-vitae-of-juan-m-uys">Curriculum Vitae of Juan M. Uys</a>
<li><a href="#juan-m-uys">Juan M. Uys</a>
<ul>
<li><a href="#contact">Contact</a></li>
<li><a href="#education">Education</a></li>
Expand Down Expand Up @@ -66,7 +66,7 @@

<!-- markdown-toc end -->

<h1 id="curriculum-vitae-of-juan-m-uys">Curriculum Vitae of Juan M. Uys</h1>
<h1 id="juan-m-uys">Juan M. Uys</h1>

<p>A few things about me:</p>

Expand All @@ -78,6 +78,11 @@ <h1 id="curriculum-vitae-of-juan-m-uys">Curriculum Vitae of Juan M. Uys</h1>
<li>fully equipped for <a href="https://opyate.com/2016/10/17/my-new-home-office/">remote working</a></li>
</ul>

<!--
- I won't do work for insitutions conducting nefarious activities like [financialisation](https://en.wikipedia.org/wiki/Financialization) and other zero-sum games
PS if you're viewing the source and read this: yes, I still say "no finance roles, please" on the phone.
-->

<h2 id="contact">Contact</h2>

<p><a href="&#109;&#097;&#105;&#108;&#116;&#111;:&#106;&#117;&#097;&#110;&#043;&#099;&#118;&#064;&#117;&#121;&#115;&#046;&#105;&#111;">&#106;&#117;&#097;&#110;&#043;&#099;&#118;&#064;&#117;&#121;&#115;&#046;&#105;&#111;</a><br />
Expand Down
8 changes: 8 additions & 0 deletions publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
cp -R _site/* ../uysio.github.io/
cd ../uysio.github.io/
git add .
git commit -m "new rendition"
git push origin master
cd -
echo "Published."

0 comments on commit 3e1ac9f

Please sign in to comment.