Add target for external link to open in new tab
This commit is contained in:
parent
39a3af8c04
commit
d9dc33004f
2 changed files with 4 additions and 4 deletions
|
@ -5,9 +5,9 @@
|
||||||
ViewData["Title"] = "Welcome";
|
ViewData["Title"] = "Welcome";
|
||||||
}
|
}
|
||||||
|
|
||||||
<p>Hello, I'm Rob. I'm a senior software engineer at <a href="https://www.codecomputerlove.com/">Code Computerlove</a> where I focus on back end development primarily using C#. In my spare time I spend my time riding bikes or making stuff, typically involving an Arduino.</p>
|
<p>Hello, I'm Rob. I'm a senior software engineer at <a href="https://www.codecomputerlove.com/" target="_blank">Code Computerlove</a> where I focus on back end development primarily using C#. In my spare time I spend my time riding bikes or making stuff, typically involving an Arduino.</p>
|
||||||
<p>This website is primarily an outlet for me to write about things which have been technically challenging, either in a professional or personal capacity, though not limited to that.</p>
|
<p>This website is primarily an outlet for me to write about things which have been technically challenging, either in a professional or personal capacity, though not limited to that.</p>
|
||||||
<p>If you wish to get in contact, then get in touch via my <a href="http://uk.linkedin.com/in/robertmarshall/"><img alt="LinkedIn profile" src="https://static.licdn.com/scds/common/u/img/webpromo/btn_liprofile_blue_80x15.png" title=""></a>.</p>
|
<p>If you wish to get in contact, then get in touch via my <a href="http://uk.linkedin.com/in/robertmarshall/" target="_blank"><img alt="LinkedIn profile" src="https://static.licdn.com/scds/common/u/img/webpromo/btn_liprofile_blue_80x15.png" title=""></a>.</p>
|
||||||
|
|
||||||
<h2>Latest code commit</h2>
|
<h2>Latest code commit</h2>
|
||||||
<table class="commit-table">
|
<table class="commit-table">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<h5>Projects:</h5>
|
<h5>Projects:</h5>
|
||||||
<ul class="nav-list">
|
<ul class="nav-list">
|
||||||
@foreach (var repository in Model) {
|
@foreach (var repository in Model) {
|
||||||
<li class="nav-list__link"><a href="@repository.Url">@repository.Name</a></li>
|
<li class="nav-list__link"><a href="@repository.Url" target="_blank">@repository.Name</a></li>
|
||||||
}
|
}
|
||||||
<li class="nav-list__link"><a href="//git.robware.uk">View All</a></li>
|
<li class="nav-list__link"><a href="//git.robware.uk" target="_blank">View All</a></li>
|
||||||
</ul>
|
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue