diff --git a/scipost/templates/scipost/index.html b/scipost/templates/scipost/index.html index 6ae0ba1ba7ba16059cff84e593d3c10f10501349..6b6d0e13a8ce9025c94faea918e5c68ada6e9eb7 100644 --- a/scipost/templates/scipost/index.html +++ b/scipost/templates/scipost/index.html @@ -93,7 +93,6 @@ </li> {% endfor %} </ul> - <p class="text-center mt-3" style="color: red;"><em>If you support and believe in our mission, <br/>be a pioneer and submit a manuscript!</em></p> </div> </div><!-- End latest publications --> </div><!-- End deck --> diff --git a/scipost/views.py b/scipost/views.py index babdffec078b6a3bf8f27e6cc5902acdd632425d..26f3e74a6e8a5d157dc97e6d221ed83f9b6e1267 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -172,9 +172,9 @@ def search(request): def index(request): '''Main page.''' context = { - 'latest_newsitems': NewsItem.objects.all().order_by('-date')[:2], - 'submissions': Submission.objects.public().order_by('-submission_date')[:4], - 'publications': Publication.objects.published().order_by('-publication_date')[:4] + 'latest_newsitems': NewsItem.objects.all().order_by('-date')[:1], + 'submissions': Submission.objects.public().order_by('-submission_date')[:3], + 'publications': Publication.objects.published().order_by('-publication_date')[:3] } return render(request, 'scipost/index.html', context)