Skip to content

Fix #98: Make hyperlinks open in new tab #105

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

Merged
merged 2 commits into from
Sep 10, 2017
Merged
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
22 changes: 11 additions & 11 deletions oshc/main/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Sessions <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="https://www.youtube.com/channel/UC1_IAby-9me3iICtxuiDL5Q">View Session</a></li>
<li><a href="{% url 'request_session' %}">Request a Session</a></li>
<li><a href="https://www.youtube.com/channel/UC1_IAby-9me3iICtxuiDL5Q" target="_blank">View Session</a></li>
<li><a href="{% url 'request_session' %}" target="_blank">Request a Session</a></li>
</ul>
</li>
<li><a href="https://github.com/OpenSourceHelpCommunity">Resources</a></li>
<li><a href="mailto:opensourcehelpcommunity@gmail.com">Contact</a></li>
<li><a href="https://opensourcehelp.herokuapp.com/">Join Us!</a></li>
<li><a href="https://github.com/OpenSourceHelpCommunity" target="_blank">Resources</a></li>
<li><a href="mailto:opensourcehelpcommunity@gmail.com" target="_blank">Contact</a></li>
<li><a href="https://opensourcehelp.herokuapp.com/" target="_blank">Join Us!</a></li>
{% if user.is_authenticated %}
<li><a href="#!">Hey {{ user.username }}!</a></li>
<li><a href="{% url 'auth_logout' %}">Logout</a></li>
{% else %}
<li><a href="{% url 'auth_login' %}">Sign In</a></li>
<li><a href="{% url 'registration_register' %}">Sign Up</a></li>
<li><a href="{% url 'auth_login' %}" target="_blank">Sign In</a></li>
<li><a href="{% url 'registration_register' %}" target="_blank">Sign Up</a></li>
{% endif %}
</ul>
</div>
Expand All @@ -60,16 +60,16 @@
<ul>
<span class="col-sm-6 left-align">
<li>
<a href="https://www.facebook.com/opensourcehelpcommunity/"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://www.facebook.com/opensourcehelpcommunity/" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com/oshelpcommunity"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://twitter.com/oshelpcommunity" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://github.com/OpenSourceHelpCommunity"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://github.com/OpenSourceHelpCommunity" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC1_IAby-9me3iICtxuiDL5Q"><i class="fa fa-youtube-play" aria-hidden="true"></i></a>
<a href="https://www.youtube.com/channel/UC1_IAby-9me3iICtxuiDL5Q" target="_blank"><i class="fa fa-youtube-play" aria-hidden="true"></i></a>
</li>
</span>
<span class="col-sm-6 back-to-top right-align">
Expand Down
2 changes: 1 addition & 1 deletion oshc/main/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h4>A Virtual Platform To Help People To Start Contributing To Open Source Proje
<div class="container">
<h3>Our Mission</h3>
<p class="bi">
<b>"</b>Open Source Help Community is an a virtual platform to help people to start contributing to open source projects<b>"</b>
<b>"</b>Open Source Help Community is a virtual platform to help people to start contributing to open source projects<b>"</b>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for this fix too. :)

</p>
<p class="intro">
OSHC is established with the idea in mind to reach those people who are interested in contributing to open source projects but find it difficult. OSHC organizes sessions with open source projects contributors and publishes material which will be useful
Expand Down