File tree Expand file tree Collapse file tree 6 files changed +50
-3
lines changed Expand file tree Collapse file tree 6 files changed +50
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changes here will be overwritten by Copier
2
- _commit : 0.15.9
2
+ _commit : 0.15.11
3
3
_src_path : gh:pawamoy/copier-pdm
4
4
author_email : pawamoy@pm.me
5
5
author_fullname : Timothée Mazzucotelli
Original file line number Diff line number Diff line change @@ -95,4 +95,27 @@ a.insiders {
95
95
transition : all .25s ;
96
96
vertical-align : bottom !important ;
97
97
width : 1.2rem ;
98
+ }
99
+
100
+ .premium-sponsors {
101
+ text-align : center;
102
+ }
103
+
104
+ .premium-sponsors .silver img {
105
+ height : 140px ;
106
+ }
107
+
108
+ .premium-sponsors .bronze img {
109
+ height : 140px ;
110
+ }
111
+
112
+ .premium-sponsors .bronze p {
113
+ display : flex;
114
+ flex-wrap : wrap;
115
+ justify-content : center;
116
+ }
117
+
118
+ .premium-sponsors .bronze a {
119
+ display : block;
120
+ flex-shrink : 0 ;
98
121
}
Original file line number Diff line number Diff line change @@ -119,13 +119,33 @@ You can cancel your sponsorship anytime.[^5]
119
119
print_join_sponsors_button()
120
120
```
121
121
122
+ <hr >
123
+ <div class =" premium-sponsors " >
124
+
125
+ <div class =" bronze " >
126
+ <b >Bronze sponsors</b >
127
+ <p >
128
+
129
+ <a href =" https://squidfunk.github.io/mkdocs-material/ " target =" _blank " title =" Material for MkDocs " >
130
+ <img alt="Material for MkDocs" src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/logo.svg" style="height: 240px;">
131
+ </a >
132
+ <a href =" https://docs.pydantic.dev/latest/ " target =" _blank " title =" Pydantic " >
133
+ <img alt="Pydantic" src="https://github.com/pawamoy/website/assets/3999221/368ff871-8fae-40c4-9b66-781b66e12cbb" style="height: 100px;">
134
+ </a >
135
+
136
+ </p >
137
+ </div >
138
+ </div >
139
+
140
+ <hr >
122
141
<br >
123
142
124
143
``` python exec="1" session="insiders"
125
144
print_sponsors()
126
145
```
127
146
128
- <br ><br >
147
+ <br >
148
+ <br >
129
149
130
150
<small >
131
151
If you sponsor publicly, you're automatically added here with a link to
Original file line number Diff line number Diff line change
1
+ # License
2
+
1
3
```
2
4
--8<-- "LICENSE"
3
5
```
Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ def _render_credits() -> str:
89
89
}
90
90
template_text = dedent (
91
91
"""
92
+ # Credits
93
+
92
94
These projects were used to build *{{ project_name }}*. **Thank you!**
93
95
94
96
[`python`](https://www.python.org/) |
Original file line number Diff line number Diff line change 5
5
import mkdocs_gen_files
6
6
7
7
nav = mkdocs_gen_files .Nav ()
8
- mod_symbol = '<code class="doc-symbol doc-symbol-nav doc-symbol-module">mod </code>'
8
+ mod_symbol = '<code class="doc-symbol doc-symbol-nav doc-symbol-module"></code>'
9
9
10
10
for path in sorted (Path ("src" ).rglob ("*.py" )):
11
11
module_path = path .relative_to ("src" ).with_suffix ("" )
You can’t perform that action at this time.
0 commit comments