Skip to content

Commit

Permalink
about / help pages
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed May 28, 2018
1 parent c63ae4c commit d3a441d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
4 changes: 4 additions & 0 deletions app/assets/v2/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ span {
#tutorials li{
list-style: none;
}
#tutorials img{
max-width: 300px;
width: 100%;
}

.tutorial_item{
background-color: #fff;
Expand Down
Binary file added app/assets/v2/images/tldr/tips_noborder.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions app/retail/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h4 class="caption font-title">{% trans "Built with &lt;3 in Boulder Colorado US
</div>
<div class="col d-flex flex-column align-items-center animated fadeInRightShort">
<img class="img-fluid" src="{% static "v2/images/about/grow_open_source.png" %}" />
<h4 class="caption font-title">{% trans "Goal: Grow Open Source" %}</h4>
<h4 class="caption font-title">{% trans "Mission: Grow Open Source" %}</h4>
<p>
{% blocktrans %}<strong>Gitcoin</strong> is a project that combines the #givefirst mantra of the Boulder community with capitalistic incentives to write great software. By enabling <span>Repo Maintainers</span>, <span>developers</span>, and <span>financiers</span> to find one another, Gitcoin grows open source software.{% endblocktrans %}
</p>
Expand Down Expand Up @@ -143,14 +143,14 @@ <h4 class="font-heading">{% trans "Join Us" %}</h4>
<div class="col-12 col-md-6 left">
<p class="font-heading">{% trans "Open Gitcoin Roles" %}</p>
<p>
{% trans "Front End Developer" %}
{% trans "Product Developer" %}
<a class="title font-caption" href="https://consensys.net/open-positions/?gh_jid=924578">
{% trans "Learn More" %}
</a>
</p>
<p>
{% trans "Technical Business Development Lead" %}
<a class="title font-caption" href="https://consensys.net/open-positions/?gh_jid=1025695">
{% trans "Entrepeneur In Residence" %}
<a class="title font-caption" href="https://consensys.net/open-positions/?gh_jid=1086781">
{% trans "Learn More" %}
</a>
</p>
Expand Down Expand Up @@ -224,7 +224,8 @@ <h4 class="">{% trans "Features of Gitcoin" %}</h4>
</div>
<div class="row mt-5 pb-3 animatedParent">
<div class="col animated pulse fast">
<a class="btn btn-lg btn-warning" role="button" href="{% url "get_gitcoin" %}">{% trans "Get Started" %}</a>
<p>and many more.. Click below to view our toolbox:</p>
<a class="btn btn-lg btn-warning" role="button" href="{% url "tools" %}">{% trans "View our Toolbox" %}</a>
</div>
</div>
</div>
Expand All @@ -244,7 +245,7 @@ <h6 style="text-align: center;" >{% trans "Everything we do is to support our mi
</div>
<div class="row mt-5 pb-3 animatedParent">
<div class="col animated pulse fast">
<a class="btn btn-lg btn-warning" role="button" href="{% url "get_gitcoin" %}">{% trans "Get Started" %}</a>
<a class="btn btn-lg btn-warning" role="button" href="{% url "mission" %}">{% trans "Read about our Mission" %}</a>
</div>
</div>
</div>
Expand Down
8 changes: 6 additions & 2 deletions app/retail/templates/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,12 @@ <h3>{% trans "Tutorials" %}</h3>
<ul>
{% for item in tutorials %}
<li class='tutorial_parent pb-4 pt-4'>
<img src="{{item.img}}" />
<a href="{{item.url}}">{{item.title}}</a>
<div style="width:33%; display: inline-block;">
<img src="{{item.img}}" />
</div>
<div style="width: 60%; display: inline-block; margin-left: 3%;">
<a href="{{item.url}}">{{item.title}}</a>
</div>
</li>
{% endfor %}
</ul>
Expand Down
8 changes: 8 additions & 0 deletions app/retail/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,10 +467,18 @@ def help(request):
'img': static('v2/images/help/firehose.jpg'),
'url': 'https://medium.com/gitcoin/tutorial-leverage-gitcoins-firehose-of-talent-to-do-more-faster-dcd39650fc5',
'title': _('Leverage Gitcoin’s Firehose of Talent to Do More Faster'),
}, {
'img': static('v2/images/tools/api.jpg'),
'url': 'https://medium.com/gitcoin/tutorial-how-to-price-work-on-gitcoin-49bafcdd201e',
'title': _('How to Price Work on Gitcoin'),
}, {
'img': static('v2/images/help/tools.png'),
'url': 'https://medium.com/gitcoin/tutorial-post-a-bounty-in-90-seconds-a7d1a8353f75',
'title': _('Post a Bounty in 90 Seconds'),
}, {
'img': static('v2/images/tldr/tips_noborder.jpg'),
'url': 'https://medium.com/gitcoin/tutorial-send-a-tip-to-any-github-user-in-60-seconds-2eb20a648bc8',
'title': _('Send a Tip to any Github user in 60 seconds'),
}]

context = {
Expand Down

0 comments on commit d3a441d

Please sign in to comment.