diff options
-rw-r--r-- | docs/index.html | 29 | ||||
-rw-r--r-- | docs/style.css | 10 | ||||
-rwxr-xr-x | generate.sh | 34 |
3 files changed, 54 insertions, 19 deletions
diff --git a/docs/index.html b/docs/index.html index a83fb3a..dce846c 100644 --- a/docs/index.html +++ b/docs/index.html | |||
@@ -18,6 +18,17 @@ | |||
18 | <div class="posts"> | 18 | <div class="posts"> |
19 | <div class="post"> | 19 | <div class="post"> |
20 | <div class="separator"></div> | 20 | <div class="separator"></div> |
21 | <div class="intro"> | ||
22 | Hi. | ||
23 | <p>I'm Akshay, I go by nerd or nerdypepper on the internet.</p> | ||
24 | <p> | ||
25 | I am a compsci undergrad, Rust programmer and an enthusiastic Vimmer. | ||
26 | I write open-source stuff to pass time. I also design fonts: scientifica, curie. | ||
27 | Things I find cool usually end up here. | ||
28 | </p> | ||
29 | <p>Get in touch at [email protected] or [email protected].</p> | ||
30 | </div> | ||
31 | <div class="separator"></div> | ||
21 | <table> | 32 | <table> |
22 | 33 | ||
23 | <tr> | 34 | <tr> |
@@ -208,16 +219,16 @@ | |||
208 | </tr> | 219 | </tr> |
209 | </table> | 220 | </table> |
210 | <div class="separator"></div> | 221 | <div class="separator"></div> |
211 | <div class="footer"> | 222 | <div class="footer"> |
212 | <a href="https://github.com/nerdypepper">Github</a> · | 223 | <a href="https://github.com/nerdypepper">Github</a> · |
213 | <a href="https://twitter.com/N3rdyP3pp3r">Twitter</a> · | 224 | <a href="https://twitter.com/N3rdyP3pp3r">Twitter</a> · |
214 | <a href="mailto:[email protected]">Mail</a> · | 225 | <a href="mailto:[email protected]">Mail</a> · |
215 | <a href="https://linkedin.com/in/nerdypepper">LinkedIn</a> · | 226 | <a href="https://linkedin.com/in/nerdypepper">LinkedIn</a> · |
216 | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> | 227 | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> |
217 | <img class="footimgs" src="https://d33wubrfki0l68.cloudfront.net/94387e9d77fbc8b4360db81e72603ecba3df94a7/632bc/static/cc.svg"> | 228 | <img class="footimgs" src="https://d33wubrfki0l68.cloudfront.net/94387e9d77fbc8b4360db81e72603ecba3df94a7/632bc/static/cc.svg"> |
218 | </a> | 229 | </a> |
219 | </div> | ||
220 | </div> | 230 | </div> |
221 | </div> | 231 | </div> |
232 | </div> | ||
222 | </body> | 233 | </body> |
223 | </html> | 234 | </html> |
diff --git a/docs/style.css b/docs/style.css index 86dcb3b..e7e5335 100644 --- a/docs/style.css +++ b/docs/style.css | |||
@@ -105,6 +105,14 @@ hr { | |||
105 | border-top: 2px solid var(--dark-white); | 105 | border-top: 2px solid var(--dark-white); |
106 | } | 106 | } |
107 | 107 | ||
108 | .intro { | ||
109 | font-size: 0.9rem; | ||
110 | overflow: auto; | ||
111 | padding: 0rem; | ||
112 | margin: 1rem 0rem; | ||
113 | font-family: 'Inter', sans-serif; | ||
114 | } | ||
115 | |||
108 | .heading { | 116 | .heading { |
109 | margin: 0 auto; | 117 | margin: 0 auto; |
110 | color: var(--black); | 118 | color: var(--black); |
@@ -202,7 +210,7 @@ pre > code { | |||
202 | } | 210 | } |
203 | 211 | ||
204 | .footer { | 212 | .footer { |
205 | font-size: 0.7rem; | 213 | font-size: 0.9rem; |
206 | text-align: center; | 214 | text-align: center; |
207 | } | 215 | } |
208 | 216 | ||
diff --git a/generate.sh b/generate.sh index 57599d8..ccae2dd 100755 --- a/generate.sh +++ b/generate.sh | |||
@@ -42,6 +42,11 @@ link_wrapper() { | |||
42 | " | 42 | " |
43 | } | 43 | } |
44 | 44 | ||
45 | intro() { | ||
46 | echo -ne " | ||
47 | " | ||
48 | } | ||
49 | |||
45 | cat > ./docs/index.html << EOF | 50 | cat > ./docs/index.html << EOF |
46 | <!DOCTYPE html> | 51 | <!DOCTYPE html> |
47 | <html lang="en"> | 52 | <html lang="en"> |
@@ -63,6 +68,17 @@ cat > ./docs/index.html << EOF | |||
63 | <div class="posts"> | 68 | <div class="posts"> |
64 | <div class="post"> | 69 | <div class="post"> |
65 | <div class="separator"></div> | 70 | <div class="separator"></div> |
71 | <div class="intro"> | ||
72 | Hi. | ||
73 | <p>I'm Akshay, I go by nerd or nerdypepper on the internet.</p> | ||
74 | <p> | ||
75 | I am a compsci undergrad, Rust programmer and an enthusiastic Vimmer. | ||
76 | I write open-source stuff to pass time. I also design fonts: scientifica, curie. | ||
77 | Things I find cool usually end up here. | ||
78 | </p> | ||
79 | <p>Get in touch at [email protected] or [email protected].</p> | ||
80 | </div> | ||
81 | <div class="separator"></div> | ||
66 | <table> | 82 | <table> |
67 | EOF | 83 | EOF |
68 | 84 | ||
@@ -106,17 +122,17 @@ done | |||
106 | cat >> ./docs/index.html << EOF | 122 | cat >> ./docs/index.html << EOF |
107 | </table> | 123 | </table> |
108 | <div class="separator"></div> | 124 | <div class="separator"></div> |
109 | <div class="footer"> | 125 | <div class="footer"> |
110 | <a href="https://github.com/nerdypepper">Github</a> · | 126 | <a href="https://github.com/nerdypepper">Github</a> · |
111 | <a href="https://twitter.com/N3rdyP3pp3r">Twitter</a> · | 127 | <a href="https://twitter.com/N3rdyP3pp3r">Twitter</a> · |
112 | <a href="mailto:[email protected]">Mail</a> · | 128 | <a href="mailto:[email protected]">Mail</a> · |
113 | <a href="https://linkedin.com/in/nerdypepper">LinkedIn</a> · | 129 | <a href="https://linkedin.com/in/nerdypepper">LinkedIn</a> · |
114 | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> | 130 | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> |
115 | <img class="footimgs" src="https://d33wubrfki0l68.cloudfront.net/94387e9d77fbc8b4360db81e72603ecba3df94a7/632bc/static/cc.svg"> | 131 | <img class="footimgs" src="https://d33wubrfki0l68.cloudfront.net/94387e9d77fbc8b4360db81e72603ecba3df94a7/632bc/static/cc.svg"> |
116 | </a> | 132 | </a> |
117 | </div> | ||
118 | </div> | 133 | </div> |
119 | </div> | 134 | </div> |
135 | </div> | ||
120 | </body> | 136 | </body> |
121 | </html> | 137 | </html> |
122 | EOF | 138 | EOF |