Skip to content

Commit f0dd971

Browse files
committed
Bug fixes
1 parent 868f53c commit f0dd971

10 files changed

+50
-46
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ defaults:
8787
values:
8888
topic: "Quantum Technologies"
8989
- scope:
90-
path: "_lectures/others"
90+
path: "_lectures/other-topics"
9191
type: lectures
9292
values:
9393
topic: "Other Topics"

_layouts/post.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}
2727
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
2828
</div>
2929
<div class="col-12 col-md-4">
30+
{% if page.image %}
3031
<img src="{{ page.image | default: '/assets/img/posts/noposter.webp' }}" alt="{{ page.title }}" class="img img-fluid" itemprop="image">
32+
{% endif %}
3133
<p class="post-media">
3234
{%- if page.video -%}
33-
<a href="{{ page.video }}" target="_blank">Watch on YouTube</a>
35+
<a href="{{ page.video }}" target="_blank"><span class="material-symbols-outlined">play_arrow</span> Watch on YouTube</a>
3436
{%- endif -%}
37+
</p>
38+
<p class="post-media">
3539
{%- if page.slides -%}
36-
<a href="{{ page.slides }}" target="_blank">Lecture Materials</a>
40+
<a href="{{ page.slides }}" target="_blank"><span class="material-symbols-outlined">import_contacts</span> Lecture Materials</a>
3741
{%- endif -%}
3842
</p>
3943
</div>

_lectures/others/2021-01-03-introduction-to-cosmology.md renamed to _lectures/other-topics/2021-01-03-introduction-to-cosmology.md

File renamed without changes.

_lectures/others/2024-10-04-intro-to-lin-alg-and-vector-calc.md renamed to _lectures/other-topics/2024-10-04-intro-to-lin-alg-and-vector-calc.md

File renamed without changes.

_lectures/others/2024-10-05-radiation-in-electromagnetism.md renamed to _lectures/other-topics/2024-10-05-radiation-in-electromagnetism.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ Classical Mechanics (as taught in Abhishek’s lecture or above), Linear Algebr
2323

2424
## Reading materials
2525

26-
[](https://en.wikipedia.org/wiki/Divergence)
27-
[](https://en.wikipedia.org/wiki/Curl_(mathematics))
28-
[](https://en.wikipedia.org/wiki/Gradient)
29-
[](https://en.wikipedia.org/wiki/Laplace_operator)
30-
[](https://en.wikipedia.org/wiki/Vector_calculus_identities)
31-
[](https://en.wikipedia.org/wiki/Dirac_delta_function)
32-
[](https://en.wikipedia.org/wiki/Maxwell%27s_equations)
26+
[1](https://en.wikipedia.org/wiki/Divergence)
27+
[2](https://en.wikipedia.org/wiki/Curl_(mathematics))
28+
[3](https://en.wikipedia.org/wiki/Gradient)
29+
[4](https://en.wikipedia.org/wiki/Laplace_operator)
30+
[5](https://en.wikipedia.org/wiki/Vector_calculus_identities)
31+
[6](https://en.wikipedia.org/wiki/Dirac_delta_function)
32+
[7](https://en.wikipedia.org/wiki/Maxwell%27s_equations)

_lectures/others/2024-11-10-problem-solving-session.md renamed to _lectures/other-topics/2024-11-10-problem-solving-session.md

File renamed without changes.

_lectures/others/2024-11-17-introduction-to-dark-matter-physics.md renamed to _lectures/other-topics/2024-11-17-introduction-to-dark-matter-physics.md

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
layout: topic-page
3-
permalink: '/lectures/others/'
3+
permalink: '/lectures/other-topics/'
44
title: Other Topics
55
---

_sass/base.scss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33

44
:root {
5-
--size--2: clamp(0.5002rem, 0.7566rem + -0.3109vw, 0.6944rem);
6-
--size--1: clamp(0.7072rem, 0.8737rem + -0.2018vw, 0.8333rem);
5+
--size--2: clamp(0.5628rem, 0.7402rem + -0.229vw, 0.6944rem);
6+
--size--1: clamp(0.7502rem, 0.8623rem + -0.1446vw, 0.8333rem);
77
--size-0: clamp(1rem, 1rem + 0vw, 1rem);
8-
--size-1: clamp(1.2rem, 1.1315rem + 0.3424vw, 1.414rem);
9-
--size-2: clamp(1.44rem, 1.261rem + 0.895vw, 1.9994rem);
10-
--size-3: clamp(1.728rem, 1.3763rem + 1.7586vw, 2.8271rem);
11-
--size-4: clamp(2.0736rem, 1.4579rem + 3.0784vw, 3.9976rem);
12-
--size-5: clamp(2.4883rem, 1.4758rem + 5.0628vw, 5.6526rem);
13-
8+
--size-1: clamp(1.2rem, 1.1537rem + 0.2313vw, 1.333rem);
9+
--size-2: clamp(1.44rem, 1.3228rem + 0.5859vw, 1.7769rem);
10+
--size-3: clamp(1.728rem, 1.5052rem + 1.1141vw, 2.3686rem);
11+
--size-4: clamp(2.0736rem, 1.6966rem + 1.8848vw, 3.1573rem);
12+
--size-5: clamp(2.4883rem, 1.8899rem + 2.992vw, 4.2087rem);
13+
1414
// Heading font
1515
--serif-font: 'Instrument Serif', serif;
1616
// Body font

_sass/minima/_layout.scss

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
}
187187

188188
.page-heading {
189-
@include relative-font-size(2);
189+
@include relative-font-size(1);
190190
}
191191

192192

@@ -260,51 +260,51 @@
260260
}
261261

262262
.post-title {
263-
@include relative-font-size(4);
263+
// @include relative-font-size(4);
264264
font-weight: 700;
265265
letter-spacing: -1px;
266266
line-height: 1;
267267
margin: 5vh 0;
268268
// margin-bottom: 10vh;
269269

270270
@include media-query($on-laptop) {
271-
@include relative-font-size(2.25);
271+
// @include relative-font-size(2.25);
272272
}
273273
}
274274

275275
.post-content {
276276
margin-bottom: $spacing-unit;
277277

278-
h2 {
279-
@include relative-font-size(4);
280-
font-weight: 700;
278+
// h2 {
279+
// @include relative-font-size(4);
280+
// font-weight: 700;
281281

282-
@include media-query($on-laptop) {
283-
@include relative-font-size(1.75);
284-
}
285-
}
282+
// @include media-query($on-laptop) {
283+
// @include relative-font-size(1.75);
284+
// }
285+
// }
286286

287-
h3 {
288-
@include relative-font-size(2.5);
289-
font-weight: 700;
287+
// h3 {
288+
// @include relative-font-size(2.5);
289+
// font-weight: 700;
290290

291-
@include media-query($on-laptop) {
292-
@include relative-font-size(1.375);
293-
}
291+
// @include media-query($on-laptop) {
292+
// @include relative-font-size(1.375);
293+
// }
294294

295-
@include media-query($on-palm) {
296-
@include relative-font-size(1.25);
297-
}
298-
}
295+
// @include media-query($on-palm) {
296+
// @include relative-font-size(1.25);
297+
// }
298+
// }
299299

300-
h4 {
301-
@include relative-font-size(1.875);
302-
font-weight: 475;
300+
// h4 {
301+
// @include relative-font-size(1.875);
302+
// font-weight: 475;
303303

304-
@include media-query($on-laptop) {
305-
@include relative-font-size(1.25);
306-
}
307-
}
304+
// @include media-query($on-laptop) {
305+
// @include relative-font-size(1.25);
306+
// }
307+
// }
308308
}
309309

310310
section {

0 commit comments

Comments
 (0)