Skip to content

Commit

Permalink
remove hardcoded urls
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitdatta committed Sep 25, 2017
1 parent d76d885 commit 039fba1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pepper/templates/emails/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
</tr>
<tr>
<td class="aligncenter content-block">
<a href="https://facebook.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/fb.png"></a>
<a href="https://twitter.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/twitter.png"></a>
<a href="https://github.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/github.png"></a>
<a href="https://facebook.com/HackTX"><img src="{{url_for('static', filename='img/social/fb.png', _external=True)}}"></a>
<a href="https://twitter.com/HackTX"><img src="{{url_for('static', filename='img/social/twitter.png', _external=True)}}"></a>
<a href="https://github.com/HackTX"><img src="{{url_for('static', filename='img/social/github.png', _external=True)}}"></a>
</td>
</tr>
</table>
Expand Down
6 changes: 3 additions & 3 deletions pepper/templates/emails/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@
</tr>
<tr>
<td class="aligncenter content-block">
<a href="https://facebook.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/fb.png"></a>
<a href="https://twitter.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/twitter.png"></a>
<a href="https://github.com/HackTX"><img src="https://d92c68liho4ps.cloudfront.net/static/img/social/github.png"></a>
<a href="https://facebook.com/HackTX"><img src="{{url_for('static', filename='img/social/fb.png', _external=True)}}"></a>
<a href="https://twitter.com/HackTX"><img src="{{url_for('static', filename='img/social/twitter.png', _external=True)}}"></a>
<a href="https://github.com/HackTX"><img src="{{url_for('static', filename='img/social/github.png', _external=True)}}"></a>
</td>
</tr>
</table>
Expand Down

0 comments on commit 039fba1

Please sign in to comment.