init template

This commit is contained in:
Florian 2016-08-13 23:39:46 +02:00
commit 2add23b120
8 changed files with 62 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
rmarkdown-website-template.Rproj

0
.nojekyll Normal file
View File

BIN
CV.pdf Normal file

Binary file not shown.

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# privefl.github.io
This is my githup repo for creating and hosting my personal website on GitHub.
I moved from [Jekyll](https://jekyllrb.com/) to [R Markdown](http://rmarkdown.rstudio.com/rmarkdown_websites.html), mostly because I'm an R enthusiast and an RStudio fanatic :').
I now use [Jekyll Now](https://github.com/privefl/blog/tree/gh-pages) for my blog.

29
_site.yml Normal file
View File

@ -0,0 +1,29 @@
name: "YOURNAME" /* CHANGE HERE */
output_dir: "."
navbar:
title: "YOURNAME" /* CHANGE HERE */
type: inverse
left:
- text: "Home"
icon: fa-home
href: index.html
- text: "About"
icon: fa-user
href: about.html
- text: "CV"
icon: fa-file-pdf-o
href: cv.html
- text: "Blog"
icon: fa-rss
href: https://YOURGITHUB.github.io/blog/ /* CHANGE HERE */
right:
- text: "Contact me"
icon: fa-envelope-o
href: mailto:YOUREMAIL /* CHANGE HERE */
- text: "GitHub"
icon: fa-github
href: https://github.com/YOURGITHUB /* CHANGE HERE */
output:
html_document:
theme: cosmo
highlight: textmate

7
about.Rmd Normal file
View File

@ -0,0 +1,7 @@
---
title: "About me"
---
## Header
Say more about you here.

9
cv.Rmd Normal file
View File

@ -0,0 +1,9 @@
---
title: "CV"
---
<a href="CV.pdf#" class="download" title="Download CV as PDF">Download CV</a>
## Header
Say more about your CV here.

5
index.Rmd Normal file
View File

@ -0,0 +1,5 @@
---
title: "Welcome to my website!"
---
You're up and running!