Skip to content

Commit b236c0e

Browse files
committed
coffee button fix
1 parent a8e7fe8 commit b236c0e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore .pyc files
2+
*.pyc

templates/layout.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,13 @@
6363
<li>
6464
<a href="{{ url_for('login.login') }}" id="library">History</a>
6565
</li>
66-
<li>
66+
<li onclick="window.open('https://www.buymeacoffee.com/codeColts', '_blank');">
6767
<img
6868
src="{{ url_for('static', filename='assets/images/bmc-button.png') }}"
6969
alt=""
7070
/>
7171
</li>
72+
7273
<!-- Add more items as required -->
7374
</ul>
7475

templates/macros/menu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<img src="{{ url_for('static', filename='assets/images/' ~ project['imageName']) }}" alt="">
66
<h4>{{ project['courseName'] }}<br><span>{{ project['price'] }}</span></h4>
77
<ul>
8-
<li><i class="fa fa-star star"></i> {{ project['rating'] }}</li>
9-
<li><i class="fa fa-bookmark star"></i></li>
8+
<li><i class="fa fa-star" style="color: #ffec51 ;"></i> {{ project['rating'] }}</li>
9+
<!-- <li><i class="fa fa-bookmark star"></i></li> -->
1010
</ul>
1111
</div>
1212
</div>

0 commit comments

Comments
 (0)