-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathsearchresults.html
108 lines (99 loc) · 4.37 KB
/
searchresults.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{% extends 'cosmos/header.html' %}
{% load staticfiles %}
{% block head %}
<title>"{{ title }}" | cosmos-search</title>
{% endblock %}
{% block body %}
<h6>
{% if amount > 1 %}
Showing
<span style="color: #5D337F;">{{ amount }}</span> results for:
<span style="color: #5D337F;">{{ query }}</span>
{% elif result_val and not result %}
Showing result for expression: <span style="color: #5D337F;">{{ query }} = {{ result_val }}</span>
{% elif amount is 1 %}
Showing
<span style="color: #5D337F;">{{ amount }}</span> result for:
<span style="color: #5D337F;">{{ query }}</span>
{% endif %}
<span>
<a href="#" style="color: #1b1e21"><div data-network="twitter"
class="st-custom-button fa fa-twitter-square"></div></a>
<a href="#" style="color: #1b1e21"><div data-network="facebook"
class="st-custom-button fa fa-facebook-square"></div></a>
<a href="#" style="color: #1b1e21"><div data-network="linkedin"
class="st-custom-button fa fa-linkedin-square"></div></a>
<a href="#" style="color: #1b1e21"><div data-network="googleplus"
class="st-custom-button fa fa-google-plus-square"></div></a>
</span>
</h6>
<hr>
{% if result_val or not result%}
{% include 'cosmos/calculator.html' %}
{% endif %}
{% if result %}
{% for entry in result %}
<div class="card">
<div class="card-body">
<h4 class="card-title">
{% for i in entry.dirs %}
{{ i }} /
{% endfor %}
</h4>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="soln" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Solutions
</button>
<div>
<div >
<ul class="sol_tab nav nav-tabs">
<li class="active">
<a href= "#tab1default" style="color: #1b1e21" data-toggle="tab">
<img src="../static/images/wikipedia.png"/>
</a>
</li>
<li>
<a href="#tab2default" style="color: #1b1e21" data-toggle="tab"><img src="../static/images/stack-overflow.png"/></a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1default">
<p><a href="{{ res_wiki.url }}" target="blank"/>{{ res_wiki.heading }}</p>
</div>
<div class="tab-pane fade" id="tab2default">
{% for x in res_stack %}
<p><a href="{{ x.url }}" target="blank"/>{{ x.title }}</p>
{% endfor %}
</div>
</div>
<div class="dropdown-menu" aria-labelledby="soln">
{% for file in entry.files %}
<a href="https://github.com/OpenGenus/cosmos/blob/master/code/{{ entry.path }}/{{ file }}"
target="_blank" class="dropdown-item">{{ file }}</a> {% endfor %}
</div>
</div>
</div>
</div>
<br> {% endfor %}
<h5>Recommended results</h5>
<hr> {% for j in recommend %}
<div class="card">
<div class="card-body">
<form method="get">
<div>
<h6 class="card-title">
{% for k in j.recdirs %}
{{ k }} /
{% endfor %}
</h6>
<a class="btn-link" href="/query/?q={{ j.last }}">solution</a>
</div>
</form>
</div>
</div>
<br>
{% endfor %}
{% endif %}
{% endblock %}