Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Tonee Young
personal_site_blog
Commits
30da8008
Commit
30da8008
authored
Jul 27, 2018
by
Tonee Young
Browse files
Fix resume link so that it isn't relative
parent
0909a117
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
app/views/layouts/application.html.erb
app/views/layouts/application.html.erb
+1
-1
config/routes.rb
config/routes.rb
+1
-0
No files found.
app/views/layouts/application.html.erb
View file @
30da8008
...
...
@@ -15,7 +15,7 @@
<li
class=
'category'
>
Here
</li>
<li>
<%=
link_to
'Blog'
,
root_path
%>
</li>
<li>
<%=
link_to
'About'
,
about_path
%>
</li>
<li>
<%=
link_to
'Resumé'
,
"documents/Tonee_Young_Resume.pdf"
,
target:
"_blank"
%>
</li>
<li>
<%=
link_to
'Resumé'
,
resume_path
,
target:
"_blank"
%>
</li>
<li
class=
'category'
>
Elsewhere
</li>
<li><a
href=
'https://twitter.com/twoesplease'
target =
'_blank'
>
Twitter
</a></li>
<li><a
href=
'https://gitlab.com/twoesplease'
target =
'_blank'
>
Gitlab
</a></li>
...
...
config/routes.rb
View file @
30da8008
...
...
@@ -11,6 +11,7 @@ Rails.application.routes.draw do
root
'posts#index'
get
'/about'
,
to:
'pages#about'
get
'/resume'
,
to:
redirect
(
'/documents/Tonee_Young_Resume.pdf'
)
namespace
:api
do
resources
:posts
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment