shop.tonybtw.com

shop.tonybtw.com

https://git.tonybtw.com/shop.tonybtw.com.git git://git.tonybtw.com/shop.tonybtw.com.git
224 bytes raw
1
package views
2
3
import "fmt"
4
5
templ Cart_Widget(count int) {
6
	<div id="cart-widget">
7
		<a href="/cart" class="cart-link">
8
			Cart
9
			if count > 0 {
10
				({ templ.EscapeString(fmt.Sprintf("%d", count)) })
11
			}
12
		</a>
13
	</div>
14
}