Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix contact info hyperlinks #7

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions csvs/contact_info.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
,Icon used from font-awesome 4 to label this contact section,The actual value written for the contact entry
loc,icon,contact
email,envelope,[email protected]
twitter,twitter,NicholasStrayer
github,github,github.com/nstrayer
website,link,nickstrayer.me
,Icon used from font-awesome 4 to label this contact section,The actual value written for the contact entry,
loc,icon,contact,link
email,envelope,[email protected],mailto:[email protected]
twitter,twitter,NicholasStrayer,https://twitter.com/NicholasStrayer
github,github,github.com/nstrayer,https://github.com/nstrayer
website,link,nickstrayer.me,http://nickstrayer.me/
4 changes: 2 additions & 2 deletions index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ library(tidyverse)

# Is data stored in google sheets? If no data will be gather from the csvs/
# folder in project
using_googlesheets <- TRUE
using_googlesheets <- FALSE

# Just the copied URL from the sheet
positions_sheet_loc <- "https://docs.google.com/spreadsheets/d/14MQICF2F8-vf8CKPF1m4lyGKO6_thG-4aSwat1e2TWc"
Expand Down Expand Up @@ -94,7 +94,7 @@ Contact {#contact}

```{r}
contact_info %>%
glue_data("- <i class='fa fa-{icon}'></i> {contact}")
glue_data("- <i class='fa fa-{icon}'></i> [{contact}]({link})")
```


Expand Down
33 changes: 25 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="author" content="Nick Strayer" />
<meta name="date" content="2020-02-12" />
<meta name="date" content="2020-02-29" />
<title>Nick Strayer’s CV</title>


Expand Down Expand Up @@ -1794,6 +1794,9 @@
.main-block:not(.concise) .details div{
margin: 0.18in 0 0.1in 0;
}
.main-block:not(.concise) .details div:empty {
margin: 0;
}
.main-block:not(.concise) .blocks:last-child .details div{
margin-bottom: 0;
}
Expand Down Expand Up @@ -30210,6 +30213,21 @@
position: relative;
width: 100%;
}


.section.no-timeline h2::after {
content: none;
}

.section.no-timeline h2 {
padding-bottom: 1rem;
}

.info-card{
width: 220px; float: left; padding: 0.5rem;
margin: 0.5rem;
box-shadow: 1px 1px 4px black;
}
</style>

</head>
Expand All @@ -30222,11 +30240,10 @@ <h1>Aside</h1>
<div id="contact" class="section level2">
<h2>Contact</h2>
<ul>
<li><i class="fa fa-envelope"></i> <a href="mailto:[email protected]" class="email">[email protected]</a></li>
<li><i class="fa fa-twitter"></i> NicholasStrayer</li>
<li><i class="fa fa-github"></i> github.com/nstrayer</li>
<li><i class="fa fa-link"></i> nickstrayer.me</li>
<li><i class="fa fa-linkedin"></i> linkedin.com/in/nickstrayer</li>
<li><i class="fa fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></li>
<li><i class="fa fa-twitter"></i> <a href="https://twitter.com/NicholasStrayer">NicholasStrayer</a></li>
<li><i class="fa fa-github"></i> <a href="https://github.com/nstrayer">github.com/nstrayer</a></li>
<li><i class="fa fa-link"></i> <a href="http://nickstrayer.me/">nickstrayer.me</a></li>
</ul>
</div>
<div id="skills" class="section level2">
Expand Down Expand Up @@ -30257,7 +30274,7 @@ <h2>Language Skills</h2>
<h2>Disclaimer</h2>
<p>Made with the R package <a href="https://github.com/rstudio/pagedown"><strong>pagedown</strong></a>.</p>
<p>The source code is available at <a href="https://github.com/nstrayer/cv">github.com/nstrayer/cv</a>.</p>
<p>Last updated on 2020-02-12.</p>
<p>Last updated on 2020-02-29.</p>
</div>
</div>
<div id="main" class="section level1">
Expand Down Expand Up @@ -30415,7 +30432,7 @@ <h2>Teaching Experience</h2>
<div id="javascript-for-shiny-users" class="section level3">
<h3>Javascript for Shiny Users</h3>
<p>RStudio::conf 2020</p>
<p>NA</p>
<p>N/A</p>
<p>2020</p>
<ul>
<li>Served as TA for two day workshop on how to leverage Javascript in Shiny applications</li>
Expand Down