From d138b08feecf079be0f03f9598d6fbe65a38fbd9 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Tue, 14 Nov 2023 12:35:04 -0800 Subject: [PATCH 01/14] Update theme (0.5) --- themes/scientific-python-hugo-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/scientific-python-hugo-theme b/themes/scientific-python-hugo-theme index 5102da5d9a..af058a566e 160000 --- a/themes/scientific-python-hugo-theme +++ b/themes/scientific-python-hugo-theme @@ -1 +1 @@ -Subproject commit 5102da5d9a18ae77dd04eb049f0aa02a853b25e3 +Subproject commit af058a566ebd0f2fd9d7d53d86fe0cde6470d654 From 99684a4bb7e5d9d30fd7d11745f3ab6b94e9c9a8 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Mon, 20 Nov 2023 11:01:43 -0800 Subject: [PATCH 02/14] Update hugo (0.120.4) --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 0d2ac33bfe..bb024961b4 100644 --- a/netlify.toml +++ b/netlify.toml @@ -2,7 +2,7 @@ # unless otherwise overridden by more specific contexts. [build.environment] PYTHON_VERSION = "3.8" # netlify currently only support 2.7 and 3.8 - HUGO_VERSION = "0.120.3" + HUGO_VERSION = "0.120.4" DART_SASS_VERSION = "1.69.4" DART_SASS_URL = "https://github.com/sass/dart-sass/releases/download/" From 16a487b3771b3ba95406cfdf6e5fb8e0d2b60dac Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Tue, 14 Nov 2023 12:40:26 -0800 Subject: [PATCH 03/14] Avoid linkchecking preconnects --- netlify.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/netlify.toml b/netlify.toml index bb024961b4..afcce2d38a 100644 --- a/netlify.toml +++ b/netlify.toml @@ -28,3 +28,4 @@ [plugins.inputs] todoPatterns = [" public/pt/user-surveys", " public/ja/user-surveys"] + skipPatterns = ["https://fonts.gstatic.com", "https://fonts.googleapis.com"] From 5231b7eb62e84dbd4f2e5a3943e88168a46fdc75 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Tue, 14 Nov 2023 13:09:00 -0800 Subject: [PATCH 04/14] Use PST style tables (rm uikit) --- assets/css/tabs.css | 39 +++++++++---------------------- layouts/partials/head.html | 3 --- layouts/partials/tabs.html | 48 ++++++++++++++++++++++++++------------ 3 files changed, 44 insertions(+), 46 deletions(-) delete mode 100644 layouts/partials/head.html diff --git a/assets/css/tabs.css b/assets/css/tabs.css index 9597a9e91a..d2b1ccfc83 100644 --- a/assets/css/tabs.css +++ b/assets/css/tabs.css @@ -1,6 +1,13 @@ -.uikit-tab-wrapper-mobile { - display: flex; - flex-direction: row; +[role="tablist"] { + justify-content: center; +} + +table td:not([align]), table th:not([align]) { + text-align: inherit; +} + +table td, table th { + vertical-align: top; } .tabs-section { @@ -26,25 +33,6 @@ margin: 15px auto; } -.uk-tab > li { - padding: 0 10px; -} - -.uk-nav > li > a { - height: 35px; - font-size: 13px; - text-transform: uppercase; - letter-spacing: 1.5px; - font-weight: 500; - color: rgb(108, 122, 137); -} - -#tabs-content > li { - width: 90vw; - max-width: 900px; - margin: 50px auto; -} - @media only screen and (max-width: 1200px) { .tabs-section { margin: 30px 10px; @@ -112,10 +100,6 @@ td.bold-text { min-width: 120px; } -.scientific-domains td.bold-text { - color: var(--colorPrimaryDark); -} - img.cell-layout { border-radius: 10px; width: 50px; @@ -139,7 +123,6 @@ td.full-center-text { td.lastrow-center-text { text-align: center; line-height: 35%; - border-bottom: 1px solid rgb(255, 255, 255); } /* Array Libraries */ @@ -151,4 +134,4 @@ img.first-column-layout { td.left-text { vertical-align: middle; -} \ No newline at end of file +} diff --git a/layouts/partials/head.html b/layouts/partials/head.html deleted file mode 100644 index 82293b4a74..0000000000 --- a/layouts/partials/head.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/layouts/partials/tabs.html b/layouts/partials/tabs.html index 2a2588b922..7b53dfc270 100644 --- a/layouts/partials/tabs.html +++ b/layouts/partials/tabs.html @@ -4,21 +4,39 @@

{{ $title }}

-
- -
    - {{ partial "scientific-domains.html" . }} - {{ partial "array-libraries.html" . }} - {{ partial "data-science.html" . }} - {{ partial "machine-learning.html" . }} - {{ partial "visualization.html" . }} -
+
+
+ + + + + +
+
+ {{ partial "scientific-domains.html" . }} +
+
+ {{ partial "array-libraries.html" . }} +
+
+ {{ partial "data-science.html" . }} +
+
+ {{ partial "machine-learning.html" . }} +
+
+ {{ partial "visualization.html" . }} +
From 9308c8e2ea5da6e739c033c24058a3ae19bd88a6 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 17 Nov 2023 09:13:57 -0800 Subject: [PATCH 05/14] Fix shell styling --- assets/css/shell.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/assets/css/shell.css b/assets/css/shell.css index 07e624327b..d19ae35a44 100644 --- a/assets/css/shell.css +++ b/assets/css/shell.css @@ -1,10 +1,8 @@ .hero-right { display: flex; flex-direction: column; - /* Black, with 10% opacity */ - box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); - background: rgb(238, 238, 238); padding: 15px; + background: var(--pst-color-surface); } .numpy-shell-canvas { @@ -24,7 +22,7 @@ .numpy-shell { flex: 2; - padding: 0 15px; + border: 1px solid var(--pst-color-border); } .shell-title-container { @@ -48,9 +46,14 @@ } .shell-lesson .highlight pre { + background-color: var(--pst-gray-800); height: 100%; } +.shell-lesson .highlight pre code{ + color: #f3c7ee; +} + .shell-lesson > p { margin: 2px 0 2px 0; } From 977350b366e34565b6dd9948ba91e84d74b4df36 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 17 Nov 2023 09:14:10 -0800 Subject: [PATCH 06/14] Fix casestudies styling --- assets/css/casestudies.css | 15 ++------------- content/en/case-studies/blackhole-image.md | 2 +- content/en/case-studies/cricket-analytics.md | 2 +- content/en/case-studies/deeplabcut-dnn.md | 2 +- content/en/case-studies/gw-discov.md | 2 +- content/ja/case-studies/blackhole-image.md | 2 +- content/ja/case-studies/cricket-analytics.md | 2 +- content/ja/case-studies/deeplabcut-dnn.md | 2 +- content/ja/case-studies/gw-discov.md | 2 +- content/pt/case-studies/blackhole-image.md | 2 +- content/pt/case-studies/cricket-analytics.md | 2 +- content/pt/case-studies/deeplabcut-dnn.md | 2 +- content/pt/case-studies/gw-discov.md | 2 +- 13 files changed, 14 insertions(+), 25 deletions(-) diff --git a/assets/css/casestudies.css b/assets/css/casestudies.css index 4693ec1409..fe10ed0414 100644 --- a/assets/css/casestudies.css +++ b/assets/css/casestudies.css @@ -2,11 +2,6 @@ padding: 30px; } -.casestudies a:hover { - text-decoration: none; - color:black -} - .casestudies-title { display: flex; justify-content: center; @@ -28,10 +23,6 @@ border-radius: 3px; } -.casestudies a { - color: var(--colorPrimaryDark) !important; -} - .casestudies-box-title { margin: 15px; font-size: 16px; @@ -58,11 +49,10 @@ .casestudies-underline { display: inline-block; - vertical-align: middle; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); - /* Black, with 10% opacity */ - box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); + border: .02em solid var(--pst-color-border); + box-shadow: 0 .2rem .5rem var(--pst-color-shadow),0 0 .0625rem var(--pst-color-shadow); position: relative; overflow: hidden; } @@ -74,7 +64,6 @@ left: 0; right: 100%; bottom: 0; - background: var(--colorPrimaryDark); height: 4px; -webkit-transition-property: right; transition-property: right; diff --git a/content/en/case-studies/blackhole-image.md b/content/en/case-studies/blackhole-image.md index 63c8c894b8..8f18653d3f 100644 --- a/content/en/case-studies/blackhole-image.md +++ b/content/en/case-studies/blackhole-image.md @@ -7,7 +7,7 @@ sidebar: false

Imaging the M87 Black Hole is like trying to see something that is by definition impossible to see.

-
Katie Bouman, Assistant Professor, Computing & Mathematical Sciences, Caltech
+
---Katie Bouman, Assistant Professor, Computing & Mathematical Sciences, Caltech
## A telescope the size of the earth diff --git a/content/en/case-studies/cricket-analytics.md b/content/en/case-studies/cricket-analytics.md index c19e6a69af..e6c98e0326 100644 --- a/content/en/case-studies/cricket-analytics.md +++ b/content/en/case-studies/cricket-analytics.md @@ -11,7 +11,7 @@ sidebar: false

You don't play for the crowd, you play for the country.

-
—M S Dhoni, International Cricket Player, ex-captain, Indian Team, plays for Chennai Super Kings in IPL
+
---M S Dhoni, International Cricket Player, ex-captain, Indian Team, plays for Chennai Super Kings in IPL
## About Cricket diff --git a/content/en/case-studies/deeplabcut-dnn.md b/content/en/case-studies/deeplabcut-dnn.md index 779d41c016..48e51831c0 100644 --- a/content/en/case-studies/deeplabcut-dnn.md +++ b/content/en/case-studies/deeplabcut-dnn.md @@ -7,7 +7,7 @@ sidebar: false

Open Source Software is accelerating Biomedicine. DeepLabCut enables automated video analysis of animal behavior using Deep Learning.

-
—Alexander Mathis, Assistant Professor, École polytechnique fédérale de Lausanne (EPFL)
+
---Alexander Mathis, Assistant Professor, École polytechnique fédérale de Lausanne (EPFL)
## About DeepLabCut diff --git a/content/en/case-studies/gw-discov.md b/content/en/case-studies/gw-discov.md index b3db7eac31..97a2a58a69 100644 --- a/content/en/case-studies/gw-discov.md +++ b/content/en/case-studies/gw-discov.md @@ -7,7 +7,7 @@ sidebar: false

The scientific Python ecosystem is critical infrastructure for the research done at LIGO.

-
David Shoemaker, LIGO Scientific Collaboration
+
---David Shoemaker, LIGO Scientific Collaboration
## About [Gravitational Waves](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) and [LIGO](https://www.ligo.caltech.edu) diff --git a/content/ja/case-studies/blackhole-image.md b/content/ja/case-studies/blackhole-image.md index 4e03d6bea2..e45d4e1aa4 100644 --- a/content/ja/case-studies/blackhole-image.md +++ b/content/ja/case-studies/blackhole-image.md @@ -7,7 +7,7 @@ sidebar: false

M87ブラックホールを画像化することは、見ることのできないものを、あえて見ようとするようなものです。

-
カリフォルニア工科大学 計算・数理学部のKatie Bouman助教授
+
---カリフォルニア工科大学 計算・数理学部のKatie Bouman助教授
## 地球大の望遠鏡 diff --git a/content/ja/case-studies/cricket-analytics.md b/content/ja/case-studies/cricket-analytics.md index 8b57e07065..ea330a6996 100644 --- a/content/ja/case-studies/cricket-analytics.md +++ b/content/ja/case-studies/cricket-analytics.md @@ -7,7 +7,7 @@ sidebar: false

観客のために競技をするのではなく、国のために競技するのです。

-
—M S Dhoni、 インディアンチームの元キャプテン、インターナショナル・クリケットプレイヤー、チェンナイ・スーパー・キングスのためにIPLでプレイ
+
---M S Dhoni、 インディアンチームの元キャプテン、インターナショナル・クリケットプレイヤー、チェンナイ・スーパー・キングスのためにIPLでプレイ
## クリケットについて diff --git a/content/ja/case-studies/deeplabcut-dnn.md b/content/ja/case-studies/deeplabcut-dnn.md index 2174db2e54..9fd1b23194 100644 --- a/content/ja/case-studies/deeplabcut-dnn.md +++ b/content/ja/case-studies/deeplabcut-dnn.md @@ -7,7 +7,7 @@ sidebar: false

オープンソースソフトウェアは生体臨床医学を加速させています。 DeepLabCut を使用すると、深層学習を使用して動物の行動を自動的にビデオ解析することができます。

-
—Alexander Mathis、 准教授、École polytechnology fe’rale de Lausanne (EPFL)
+
---Alexander Mathis、 准教授、École polytechnology fe’rale de Lausanne (EPFL)
## DeepLabCut について diff --git a/content/ja/case-studies/gw-discov.md b/content/ja/case-studies/gw-discov.md index fe1e634e44..5b2157a63b 100644 --- a/content/ja/case-studies/gw-discov.md +++ b/content/ja/case-studies/gw-discov.md @@ -7,7 +7,7 @@ sidebar: false

科学計算のためのPythonエコシステムはLIGOで行われている研究のための重要なインフラです。

-
David Shoemaker, LIGOサイエンティフィック・コラボレーション
+
---David Shoemaker, LIGOサイエンティフィック・コラボレーション
## [重力波](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) と [LIGO](https://www.ligo.caltech.edu) について diff --git a/content/pt/case-studies/blackhole-image.md b/content/pt/case-studies/blackhole-image.md index c6f0a4d986..850e040f23 100644 --- a/content/pt/case-studies/blackhole-image.md +++ b/content/pt/case-studies/blackhole-image.md @@ -7,7 +7,7 @@ sidebar: false

Criar uma imagem do Buraco Negro M87 é como tentar ver algo que, por definição, é impossível de se ver.

-
Katie Bouman, Professora Assistente, Ciências da Computação e Matemática, Caltech
+
---Katie Bouman, Professora Assistente, Ciências da Computação e Matemática, Caltech
## Um telescópio do tamanho da Terra diff --git a/content/pt/case-studies/cricket-analytics.md b/content/pt/case-studies/cricket-analytics.md index e3821f1aa7..6f6a863a60 100644 --- a/content/pt/case-studies/cricket-analytics.md +++ b/content/pt/case-studies/cricket-analytics.md @@ -7,7 +7,7 @@ sidebar: false

Você não joga para a torcida, joga para o país.

-
—M S Dhoni, Jogador Internacional de Críquete, ex-capitão, Time Indiano, joga pelo Chennai Super Kings na IPL
+
---M S Dhoni, Jogador Internacional de Críquete, ex-capitão, Time Indiano, joga pelo Chennai Super Kings na IPL
## Sobre Críquete diff --git a/content/pt/case-studies/deeplabcut-dnn.md b/content/pt/case-studies/deeplabcut-dnn.md index 1dd02b9f92..558a42db1f 100644 --- a/content/pt/case-studies/deeplabcut-dnn.md +++ b/content/pt/case-studies/deeplabcut-dnn.md @@ -7,7 +7,7 @@ sidebar: false

Software de código aberto está acelerando a Biomedicina. DeepLabCut permite a análise automática de vídeos de comportamento animal usando Deep Learning.

-
—Alexander Mathis, Professor Assistente, École polytechnique fédérale de Lausanne (EPFL)
+
---Alexander Mathis, Professor Assistente, École polytechnique fédérale de Lausanne (EPFL)
## Sobre o DeepLabCut diff --git a/content/pt/case-studies/gw-discov.md b/content/pt/case-studies/gw-discov.md index 6de7efed50..01206d0aba 100644 --- a/content/pt/case-studies/gw-discov.md +++ b/content/pt/case-studies/gw-discov.md @@ -7,7 +7,7 @@ sidebar: false

O ecossistema científico Python é uma infraestrutura crítica para a pesquisa feita no LIGO.

-
David Shoemaker, Colaborador Científico no LIGO
+
---David Shoemaker, Colaborador Científico no LIGO
## Sobre [Ondas Gravitacionais](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) e o [LIGO](https://www.ligo.caltech.edu) From 21315bc4860d0657ef9a45cd1ed1c6fcdb4ee311 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 15 Nov 2023 16:50:25 -0800 Subject: [PATCH 07/14] Add author name for copyright in footer See https://github.com/scientific-python/scientific-python-hugo-theme/pull/374 --- config.yaml.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.yaml.in b/config.yaml.in index b90d45668f..f18677d97f 100644 --- a/config.yaml.in +++ b/config.yaml.in @@ -14,6 +14,8 @@ markup: disableLanguages: [] params: + author: + name: "NumPy team" images: - /images/numpy-image.jpg navColor: blue From bfa67d79e31c773b4c8818ed44f5fb30118b27e0 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 15 Nov 2023 17:03:38 -0800 Subject: [PATCH 08/14] Load jquery --- layouts/partials/head.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 layouts/partials/head.html diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000000..4fcc8a7332 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1 @@ + From 41851ec2ccbb5b7766e293e146aeb80a40144dba Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Thu, 16 Nov 2023 10:54:01 -0800 Subject: [PATCH 09/14] Fix broken opencollective link --- layouts/shortcodes/opencollective.html | 2 +- static/images/logos/opencollective.png | Bin 0 -> 6062 bytes 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 static/images/logos/opencollective.png diff --git a/layouts/shortcodes/opencollective.html b/layouts/shortcodes/opencollective.html index ef4e37c323..b1c46a3165 100644 --- a/layouts/shortcodes/opencollective.html +++ b/layouts/shortcodes/opencollective.html @@ -1,6 +1,6 @@ diff --git a/static/images/logos/opencollective.png b/static/images/logos/opencollective.png new file mode 100644 index 0000000000000000000000000000000000000000..e664af965af6a30aad0cf9f7bb5599a28c4b5b45 GIT binary patch literal 6062 zcmYjVWmFVww;dVpXiuXYI4kpY!WzD}g{|!~noMc^OT8O(BEV004mGC3O%1W&nV+s-|KzA^?DpMCT08 z0ZC3mT;HA^y90#68XuzEnCcH_rBxF<(YR`Uu;(_iYabL+$?X+N+dTJRA%BWDBgDm* zLeML3T8F*wZ}5LK>$WwDZ-mtdl+JSUwwnqtgcb6Q|Auh_^@U)(BtaDW#b30wBl?pL zb(d1>(5nY~mw)0~;M}314oBvq|Fn!pm^DV%@1!NA-FwaeID3&Y{+%q8yCz||QUrcp z!c2b`4VdsG;aHpNX7AxK?`FFzX~WC{4-u>J*p0uHj<$wbXk<0mfo?fGENqTm9aqo9Eys~S55p|t=T;7};FApX8AwLs zW*e8Pz|t~QoYh7xB~jK1!(`(|9iU)yvy>zxRmG5`{4$D*EB|0On}}CRsy-(tl7A@2 zFUGBu=0m$+k2-(ER%ERbrOksgD5Q|uh+4$QCRgtySMMJ++fP8Q<%FSC^-`O{*_)6e zC=O>TeNmU=elUD#*5f%Fpr1XHd#k*ol+CoNkP?&{l`yj#74;YnAm%$d zNQNoSj#t)WK6ppoHsVpk_{*Tz=TMR#^_HA62U@5-jvGkL%ii!7r{?K17Xn^(6v#&a0L+*G@(@^b5zPS-&H@<h43V7kQgDlS(ZF319d;SC^Eqb37tU!z|sTaEKC4?U&pRtd-%K|~qq42I_l>4~@ zUKsYn+sEl4mtg9dp5Eu5{uPk!C!ZUdr<5m!zqY+-*BV!F_yaQhV^;{=9s+;hhA%#C z-wHj~!mVy9w`{My;qa$gS8OS4_!Iak=y~*Z?pFa4gy&u5L+wK?m+15s?r-OLO_Zya zY2xk9v01arL~{)$?5lv7Zp{os-zF!7;GnTpFbeWhTGP+huO3+KTM3Yq+m(0>wVD}} zO@?BT_h)QQJoUK|y7;vH@a`)Ha=Ma;J1215#kF#V>ke0JPp9X=g@l0}`JdiAm;*GB zJGYVBz1IMUJ`4vq40GMf0Q^2qp%9L|>s~u(Rd&YMe8v_!WA^Wy&a9*Q!nL}@aR=>(URX20E*w&^Nmg=AF=m)Pcxnj^ZK`*vYF|h( zh@!WSXRKsTZhB(4+B}WdA+(TNe{@Os_MZCFCSYN`EN) zQ6>tL%9x?LmL^5uS2779TW6dg_<`4KI53l(CI2b=J~STxXfPL3mX>hN=xfUmP?_+o zfAli|@O)<=3AY-CFONdt=DlYZfhiCY&qe-#s{FMg`Ju3i%{?e(--H!x)YWDsoj1R+ z@gU8?3i>$mMNp`pvG@&*b>b|C|GpmymAc$gHX*F(;sQ|wRVpUa&W#Aw8Q2c}sA}4v z>PV-XAlUhxVa`Lf?rjm5`{>E8Xt{S0S8Tow z#(pixS}Gjb`RgFb4FcRoQX*=7lms@Tv`D?DMl3!Lm&5L~Wu8lsBJF}7*xwI3aAb2K z@3x#5CEemUV6bLE^B-Flv(%{L<*tos{7G*EeS*4;(LI-L*MWz{Uh>;Nma~GbXQ{|1 zYQBaD#N!7>s?|_BR!}G8Ix!cE*_iz{-=KLS<`v*GwjSPGg|A6 z)nL^*&p)cZ`TX?9jHTv*??^fGu-!)1Sf2I|nL?isd8p-gVPc@pl6sCwFg*o60=8bB zefoj@Amwm+C+ir)TSI$ZXQZ~QhVdRYw*Jas)c=Qqn?u$U8)>^rRof7cI2x9YoTcN^ zbxWQ4(R($E_AMp=N*PUa4H3U;DF|qWYdL%0w_!8ArfY}HM35JaYz^BHvMw+i21+1t zTculBmvx3d)j8zbeydQ{@uE)ZtyRHAj#pKJIo0m+yYA{&gGa?37*7O@1eCqK_Sr(-b> zjgbh}M)f9D#Q=gfKSmdnIG@Fl>X{_0URaa8`b_zgUksb=#yhJ_2^$cH{(fC*w2oO2 z!7Np%eShrA4to!qTAQKqDQ9G-qb=dIptCOzV|SJkV&JMivBrv#ppuy|BzaBmZG<*FS&>dZ zcUlFJVaH-u=X~|6k1lG1ba(9A5$D*qQNH5dLBJgzNI>hJi(m*#;$4Tk5gVUjHcH&QpDyYBsX{|b;s3t`kd_( z0l@H1Hk+x9A9NqYHq;DaQ&~I4?}GJ5j~=k;EL4WCmSs?hZTLjrE&2{lu9n!*1^f8; znxH#>dVDxMBc{6;ecim$SY?v<>idmf`i>%0in1nGA<|53k%NLT(0Zq+8qHMf{%iY1 z53Rl~E`sbM8akLKAWElw7>S$H8$;V5b;x2xo34$c&(S0^ z&W@V9q*D~d)h_H(LM=d!3+tZ(L$p5<-J`ny2=Ii5r*7-AmJy{3UAAp=Vb zW~T!^!5Cs&!Tp8zYuf=sMw=AA!8;&%wgkBC8na+Uy1cenNy4es=>TD-1CK#6M_gM0 zF2jYU6eV@)qwts;Co+kvf48*rsTmBgD_F5rt56R2=Tf{<9Pb#X#b)V6evGe|~8q&0; z&pFEH0%hiA$^4sGwIKoPB)6GD6udzhB8eUWTdP8LW|wn;?wy0a2k8tac1yjvzXHK4 z5LC;*39|c`x17NQD|wA8LH>mHL{)@2ba%(CMNp0z)(5XMQy=8YqDBQos(!Wx2~k#p zHL-8DfQa5u56tkZL{L{aj~+VZ^#Zm+9>d?2+|DZcwo>rKY}q-nQ1ZrdgjU*#rT(92 zV$1FN!dquR+}p}88yUFQPem%B*Gx95Uw#U{jdMo}hs24&kQd2Eic5DjG+>crw!80!W^T4Lh0Nv?|&L)0sq3+wBU=%}F@kuvCV2lq@#2 zy!(J;=D?;|YMRMnS_(}ThrwH%BP*#BE-RYEVAR3^4iW5~=SFUb(Ef^pS``lWU7a*0 zUDdxA#`^Dxm=i%N%=XL)agr5GU^(yaz(-)4X-}I|#c3Xf!pvcIcBsZ_fNn?R8YySj zFgdO*2qw3VMbSM)As4%JI7Eqo@aZlcJAF8#=)Y*^Wk9C5;_u#pvnOC~^i|Tl@IKJPeQ;rGY zk7H$WDs1{z0y~ihQa~R6!APn;_TUBxO&3_Tb~?m^_L9Em;}pgUVv4`7cBu((+nA3# z)$?He^)PmzWcK3tyn1-a_XtivNHWq?_`LWLONxqI)B)Z$FND<`6ruT@?|@DpNJ8eoU1 zauEk~(9UseIGhG6@Cef**1jmTT-VTTTa}RAJ7Bu`Hgx*A!4<}p%Qp^=lELQECog7 zGU*dc_iw@nX|AvqyrW_cj0w5t`;0#^B}v9vW8DWx#w{liV;kx+sp2x3j5 zLpaPSODQV@>$2?Mue@!B#uYC55`f$qj`+_9xwe=uD1+p=^(%H;G9Pa#TMlykV==tD zyDAcMD2!0cye)2&BZxQ(>YTtBI1D(?U0B z+FbWW{ZtNSoe0i~5K0~;+v{%m-sHJ0^bexHg9=&P2X~gdF~2z;o;aGf zN&WtF&hOC{8ZyZyyCm1rz7z8U(AC-TbFw)fG4_j^4;Hk6cZ5TEBEHFEX%|5tEWG%_ z)3pwfs`aDxS<$>;ztLil`-c(mK0BKaS6ltaxSbA<1pZ1@zsPx9w~S`QG80$-AWb26 za{(3ork{#D9n(V5S9e>@E;1O8Mnc-(Ka=+Ry6G`~-QQM7rWqcc(#gc|o%ljMLmAo? zOW2Gknn!Ic2DvLLc~>kTA5<%IgdFLrLQZVUP??gK+nTnKjzL~W*M(Fvg6ZN(Jtxi1 zk4QE4m5dB^w-sZpX?IRp%x}F26|yUp3T@UBVxX@5S@4z=&;|8J~m^aQPBytWg(|7sl*7e*`_1RaZ{0fYW4Jk z+GBA)vkJ!tYe~yBr;nD!xy*7lgna#uC}%5|waPs$>ietQa+Zl^HKM?Ntkcxxn*Ux` zbXFd4%-i_}Gck?4FIwOjE3R;$f{00_q?r=L3<>C4( zPvx+)n1l%Cw5%uh0;4YZjSq_U2O&4kEi&hqk$wy@Q+n9r(gm8bqr?dA?5D=7U2Ety z7#p?qm?%|Os0Q_vS;2SYU<0#L;dBE!YXK?mOuV&wi45)F+GYz^TupCc4&ONl-aYbH z)p%#1FbTvu#(94oG0nA5#@~(tJy(VppR2R`)lQE^bT%5M%88>3xC|755-=L(zL|R> zUYW(gY$T3!Q+{54l7WBntDdxQCnWy7OhOUt4(wt8n%k;Zj5GMGMJW0Gy3N27u0F2h z_Mmq^@V=(Gifi@*(cOmT7|YWPayt#rFm;&<(FqnJK)puESq|IOTicP(chx^5 z*sx_;YuFl~)VMOQKdyQ6=Y@RqdCr*Rn$TwQOSwky|79RMs z&%(egl{0iDfW!ngU924nmgbCQ-MgY3u~7SPk@tJN$k!(pHfC6U_kbjG_#Be)hDgv+ z^1PbHZ|IqPVU9dEl@8`sM^w|?q&j%VXiyN5w1kI0NzrkDk5^zN*jb7WY50a-YxY6P z^$q+|nQG>yScvFbZ|nEfw8_sB6g7dP;nD7@bvusR9s|(dVfXA#oGG(G7vQgDD^uJ@ zGh0R%*_bK%v6(ENuP2#`;%46~zC{im0?1v$F2Y~`@pl~nyOphJE3mT|(C*h~I0HxK z9qiB*wNg+=QGl?LdeMlvrN5STZuDj=K$^IytFrkDu9#eE1H70{lbPqlf)lFEfI$;i zT2H$P!coEX9Lmmb2Vdf#aA@YHR_=t5EWw`%An^GD_~pGBd>%Oe_Hya+<7pviE9eV;Q80jg+M3Mc zLbUv+?`Z$Sw{e~+jMQmZ`S1fR>3n*{} z$w!ufseh-UP&APDU!zE`#It;b4FqRb5TS&OH!}erSy_vE1e3TFLVW1m3#A+%9|wlB z&+mz$yufBsza9>x)G=Jzbdud-khfb1m|RKj&NflImhAJ~5HD93n%lC++ww}w4O^t+V9CaE9khTdm3*%Fbx)spTjcHf zjnZtVanVEzbYQs{p8e(^Yawp=B)6kUmk0FC{E+dpMQok)u5lp%Aa9@qYJa(H%lp{d z002r#ECBSEA1VM30SSQc!v0Az1eE`v{tGAnmz%zDrhhdr$8Z2X;{WOGBa#23e=+<| zD89V^`1~)T0su*90OXen7Y{cVLh^q(!ixi-@ZUN&7Z*a|e;wg)006P@zmB>uqmcgP K<}dyK#Qy+sBaA2j literal 0 HcmV?d00001 From 5e3d44c74e8a3399901bc65cd2c12fdced1a2d1a Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 29 Nov 2023 17:09:55 -0800 Subject: [PATCH 10/14] Remove old custom css --- assets/css/vars-override.css | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 assets/css/vars-override.css diff --git a/assets/css/vars-override.css b/assets/css/vars-override.css deleted file mode 100644 index 9c6bc4cc37..0000000000 --- a/assets/css/vars-override.css +++ /dev/null @@ -1,3 +0,0 @@ -:root { - --colorContentLink: rgb(77, 119, 207); -} \ No newline at end of file From a85637404e6c80d808cd93271b8dbbe346f41761 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Thu, 16 Nov 2023 11:24:46 -0800 Subject: [PATCH 11/14] Disable dark mode temporarily --- config.yaml.in | 1 + 1 file changed, 1 insertion(+) diff --git a/config.yaml.in b/config.yaml.in index f18677d97f..56483f32f5 100644 --- a/config.yaml.in +++ b/config.yaml.in @@ -14,6 +14,7 @@ markup: disableLanguages: [] params: + colorScheme: light author: name: "NumPy team" images: From 5c68e68e26e869c193db4fc14ecd4ad4b88611fc Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 17 Nov 2023 10:52:26 -0800 Subject: [PATCH 12/14] Fix mailchimp styling --- assets/css/mailchimp.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css/mailchimp.css b/assets/css/mailchimp.css index 9ac204b290..7441684508 100644 --- a/assets/css/mailchimp.css +++ b/assets/css/mailchimp.css @@ -11,8 +11,9 @@ } .sign-up-image { + height: 35px; padding: 5px 10px 6px 10px; - border-right: 1px solid var(--colorSecondary); + border-right: 1px solid var(--colorPrimaryDark); background-color: var(--colorSecondary); border-radius: 5px 0 0 5px; } From 8cfbd370cf07073c66bf5e4a6fbee3d1a1f92b76 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Fri, 17 Nov 2023 17:16:41 -0800 Subject: [PATCH 13/14] Render blockquotes from shortcode --- content/en/case-studies/blackhole-image.md | 10 ++++++---- content/en/case-studies/cricket-analytics.md | 10 ++++++---- content/en/case-studies/deeplabcut-dnn.md | 10 ++++++---- content/en/case-studies/gw-discov.md | 9 +++++---- content/ja/case-studies/blackhole-image.md | 10 ++++++---- content/ja/case-studies/cricket-analytics.md | 10 ++++++---- content/ja/case-studies/deeplabcut-dnn.md | 10 ++++++---- content/ja/case-studies/gw-discov.md | 9 +++++---- content/pt/case-studies/blackhole-image.md | 10 ++++++---- content/pt/case-studies/cricket-analytics.md | 10 ++++++---- content/pt/case-studies/deeplabcut-dnn.md | 10 ++++++---- content/pt/case-studies/gw-discov.md | 9 +++++---- layouts/shortcodes/blockquote.html | 4 ++++ 13 files changed, 73 insertions(+), 48 deletions(-) create mode 100644 layouts/shortcodes/blockquote.html diff --git a/content/en/case-studies/blackhole-image.md b/content/en/case-studies/blackhole-image.md index 8f18653d3f..b7c00359fe 100644 --- a/content/en/case-studies/blackhole-image.md +++ b/content/en/case-studies/blackhole-image.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/blackhole.jpg" caption="**Black Hole M87**" alt="black hole image" attr="*(Image Credits: Event Horizon Telescope Collaboration)*" attrlink="https://www.jpl.nasa.gov/images/universe/20190410/blackhole20190410.jpg" >}} -
-

Imaging the M87 Black Hole is like trying to see something that is by definition impossible to see.

-
---Katie Bouman, Assistant Professor, Computing & Mathematical Sciences, Caltech
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="Katie Bouman, *Assistant Professor, Computing & Mathematical Sciences, Caltech*" +>}} +Imaging the M87 Black Hole is like trying to see something that is by definition impossible to see. +{{< /blockquote >}} ## A telescope the size of the earth diff --git a/content/en/case-studies/cricket-analytics.md b/content/en/case-studies/cricket-analytics.md index e6c98e0326..3ac6612831 100644 --- a/content/en/case-studies/cricket-analytics.md +++ b/content/en/case-studies/cricket-analytics.md @@ -9,10 +9,12 @@ sidebar: false attr="*(Image credits: IPLT20 (cup and logo) & Akash Yadav (stadium))*" attrlink="https://unsplash.com/@aksh1802" >}} -
-

You don't play for the crowd, you play for the country.

-
---M S Dhoni, International Cricket Player, ex-captain, Indian Team, plays for Chennai Super Kings in IPL
-
+{{< blockquote + cite="https://www.scoopwhoop.com/sports/ms-dhoni/" + by="M S Dhoni, *International Cricket Player, ex-captain, Indian Team, plays for Chennai Super Kings in IPL*" +>}} + You don't play for the crowd, you play for the country. +{{< /blockquote >}} ## About Cricket diff --git a/content/en/case-studies/deeplabcut-dnn.md b/content/en/case-studies/deeplabcut-dnn.md index 48e51831c0..3ac3487b42 100644 --- a/content/en/case-studies/deeplabcut-dnn.md +++ b/content/en/case-studies/deeplabcut-dnn.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/mice-hand.gif" class="fig-center" caption="**Analyzing mice hand-movement using DeepLapCut**" alt="micehandanim" attr="*(Source: www.deeplabcut.org )*" attrlink="http://www.mousemotorlab.org/deeplabcut">}} -
-

Open Source Software is accelerating Biomedicine. DeepLabCut enables automated video analysis of animal behavior using Deep Learning.

-
---Alexander Mathis, Assistant Professor, École polytechnique fédérale de Lausanne (EPFL)
-
+{{< blockquote + cite="https://news.harvard.edu/gazette/story/newsplus/harvard-researchers-awarded-czi-open-source-award/" + by="Alexander Mathis, *Assistant Professor, École polytechnique fédérale de Lausanne* ([EPFL](https://www.epfl.ch/en/))" +>}} +Open Source Software is accelerating Biomedicine. DeepLabCut enables automated video analysis of animal behavior using Deep Learning. +{{< /blockquote >}} ## About DeepLabCut diff --git a/content/en/case-studies/gw-discov.md b/content/en/case-studies/gw-discov.md index 97a2a58a69..01399157ce 100644 --- a/content/en/case-studies/gw-discov.md +++ b/content/en/case-studies/gw-discov.md @@ -5,10 +5,11 @@ sidebar: false {{< figure src="/images/content_images/cs/gw_sxs_image.png" class="fig-center" caption="**Gravitational Waves**" alt="binary coalesce black hole generating gravitational waves" attr="*(Image Credits: The Simulating eXtreme Spacetimes (SXS) Project at LIGO)*" attrlink="https://youtu.be/Zt8Z_uzG71o" >}} -
-

The scientific Python ecosystem is critical infrastructure for the research done at LIGO.

-
---David Shoemaker, LIGO Scientific Collaboration
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="David Shoemaker, *LIGO Scientific Collaboration*" >}} +The scientific Python ecosystem is critical infrastructure for the research done at LIGO. +{{< /blockquote >}} ## About [Gravitational Waves](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) and [LIGO](https://www.ligo.caltech.edu) diff --git a/content/ja/case-studies/blackhole-image.md b/content/ja/case-studies/blackhole-image.md index e45d4e1aa4..816687dde5 100644 --- a/content/ja/case-studies/blackhole-image.md +++ b/content/ja/case-studies/blackhole-image.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/blackhole.jpg" caption="**Black Hole M87**" alt="black hole image" attr="*(Image Credits: Event Horizon Telescope Collaboration)*" attrk="https://www.jpl.nasa.gov/images/universe/90410/blackhole20190410.jpg" >}} -
-

M87ブラックホールを画像化することは、見ることのできないものを、あえて見ようとするようなものです。

-
---カリフォルニア工科大学 計算・数理学部のKatie Bouman助教授
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="*カリフォルニア工科大学 計算・数理学部*のKatie Bouman助教授" +>}} +M87ブラックホールを画像化することは、見ることのできないものを、あえて見ようとするようなものです。 +{{< /blockquote >}} ## 地球大の望遠鏡 diff --git a/content/ja/case-studies/cricket-analytics.md b/content/ja/case-studies/cricket-analytics.md index ea330a6996..baf355a4ea 100644 --- a/content/ja/case-studies/cricket-analytics.md +++ b/content/ja/case-studies/cricket-analytics.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/ipl-stadium.png" caption="** IPLT20、インド最大のクリケットフェスティバル**" alt="Indian Premier League Cricket cup and stadium" attr="*(Image credits: IPLT20 (cup and logo) & Akash Yadav (stadium))*" attrlink="https://unsplash.com/@aksh1802" >}} -
-

観客のために競技をするのではなく、国のために競技するのです。

-
---M S Dhoni、 インディアンチームの元キャプテン、インターナショナル・クリケットプレイヤー、チェンナイ・スーパー・キングスのためにIPLでプレイ
-
+{{< blockquote + cite="https://www.scoopwhoop.com/sports/ms-dhoni/" + by="M S Dhoni、 *インディアンチームの元キャプテン、インターナショナル・クリケットプレイヤー、チェンナイ・スーパー・キングスのためにIPLでプレイ*" +>}} +観客のために競技をするのではなく、国のために競技するのです。 +{{< /blockquote >}} ## クリケットについて diff --git a/content/ja/case-studies/deeplabcut-dnn.md b/content/ja/case-studies/deeplabcut-dnn.md index 9fd1b23194..c0403611d1 100644 --- a/content/ja/case-studies/deeplabcut-dnn.md +++ b/content/ja/case-studies/deeplabcut-dnn.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/mice-hand.gif" class="fig-center" caption="**DeepLapCutを用いたマウスの手の動きの解析 **" alt="micehandanim" attr="*(Source: www.deeplabcut.org )*" attrlink="http://www.mousemotorlab.org/deeplabcut">}} -
-

オープンソースソフトウェアは生体臨床医学を加速させています。 DeepLabCut を使用すると、深層学習を使用して動物の行動を自動的にビデオ解析することができます。

-
---Alexander Mathis、 准教授、École polytechnology fe’rale de Lausanne (EPFL)
-
+{{< blockquote + cite="https://news.harvard.edu/gazette/story/newsplus/harvard-researchers-awarded-czi-open-source-award/" + by="Alexander Mathis、 *准教授、École polytechnology fe’rale de Lausanne* ([EPFL](https://www.epfl.ch/en/))" +>}} +オープンソースソフトウェアは生体臨床医学を加速させています。 DeepLabCut を使用すると、深層学習を使用して動物の行動を自動的にビデオ解析することができます。 +{{< /blockquote >}} ## DeepLabCut について diff --git a/content/ja/case-studies/gw-discov.md b/content/ja/case-studies/gw-discov.md index 5b2157a63b..e0bdc846b9 100644 --- a/content/ja/case-studies/gw-discov.md +++ b/content/ja/case-studies/gw-discov.md @@ -5,10 +5,11 @@ sidebar: false {{< figure src="/images/content_images/cs/gw_sxs_image.png" class="fig-center" caption="**重力波**" alt="binary coalesce black hole generating gravitational waves" attr="*(Image Credits: The Simulating eXtreme Spacetimes (SXS) Project at LIGO)*" attrlink="https://youtu.be/Zt8Z_uzG71o" >}} -
-

科学計算のためのPythonエコシステムはLIGOで行われている研究のための重要なインフラです。

-
---David Shoemaker, LIGOサイエンティフィック・コラボレーション
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="David Shoemaker, *LIGOサイエンティフィック・コラボレーション*" >}} +科学計算のためのPythonエコシステムはLIGOで行われている研究のための重要なインフラです。 +{{< /blockquote >}} ## [重力波](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) と [LIGO](https://www.ligo.caltech.edu) について diff --git a/content/pt/case-studies/blackhole-image.md b/content/pt/case-studies/blackhole-image.md index 850e040f23..b4832fd66f 100644 --- a/content/pt/case-studies/blackhole-image.md +++ b/content/pt/case-studies/blackhole-image.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/blackhole.jpg" caption="**Black Hole M87**" alt="black hole image" attr="*(Créditos: Event Horizon Telescope Collaboration)*" attrlink="https://www.jpl.nasa.gov/images/universe/20190410/blackhole20190410.jpg" >}} -
-

Criar uma imagem do Buraco Negro M87 é como tentar ver algo que, por definição, é impossível de se ver.

-
---Katie Bouman, Professora Assistente, Ciências da Computação e Matemática, Caltech
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="Katie Bouman, *Professora Assistente, Ciências da Computação e Matemática, Caltech*" +>}} +Criar uma imagem do Buraco Negro M87 é como tentar ver algo que, por definição, é impossível de se ver. +{{< /blockquote >}} ## Um telescópio do tamanho da Terra diff --git a/content/pt/case-studies/cricket-analytics.md b/content/pt/case-studies/cricket-analytics.md index 6f6a863a60..54da45b73d 100644 --- a/content/pt/case-studies/cricket-analytics.md +++ b/content/pt/case-studies/cricket-analytics.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/ipl-stadium.png" caption="**IPLT20, o maior festival de Críquete da Índia**" alt="Copa e estádio da Indian Premier League Cricket" attr="*(Image credits: IPLT20 (cup and logo) & Akash Yadav (stadium))*" attrlink="https://unsplash.com/@aksh1802" >}} -
-

Você não joga para a torcida, joga para o país.

-
---M S Dhoni, Jogador Internacional de Críquete, ex-capitão, Time Indiano, joga pelo Chennai Super Kings na IPL
-
+{{< blockquote + cite="https://www.scoopwhoop.com/sports/ms-dhoni/" + by="M S Dhoni, *Jogador Internacional de Críquete, ex-capitão, Time Indiano, joga pelo Chennai Super Kings na IPL*" +>}} +Você não joga para a torcida, joga para o país. +{{< /blockquote >}} ## Sobre Críquete diff --git a/content/pt/case-studies/deeplabcut-dnn.md b/content/pt/case-studies/deeplabcut-dnn.md index 558a42db1f..c3fd0b9a2a 100644 --- a/content/pt/case-studies/deeplabcut-dnn.md +++ b/content/pt/case-studies/deeplabcut-dnn.md @@ -5,10 +5,12 @@ sidebar: false {{< figure src="/images/content_images/cs/mice-hand.gif" class="fig-center" caption="**Análise de movimentos de mãos de camundongos usando DeepLapCut**" alt="micehandanim" attr="*(Fonte: www.deeplabcut.org )*" attrlink="http://www.mousemotorlab.org/deeplabcut">}} -
-

Software de código aberto está acelerando a Biomedicina. DeepLabCut permite a análise automática de vídeos de comportamento animal usando Deep Learning.

-
---Alexander Mathis, Professor Assistente, École polytechnique fédérale de Lausanne (EPFL)
-
+{{< blockquote + cite="https://news.harvard.edu/gazette/story/newsplus/harvard-researchers-awarded-czi-open-source-award/" + by="Alexander Mathis, *Professor Assistente, École polytechnique fédérale de Lausanne* ([EPFL](https://www.epfl.ch/en/))" +>}} +Software de código aberto está acelerando a Biomedicina. DeepLabCut permite a análise automática de vídeos de comportamento animal usando Deep Learning. +{{< /blockquote >}} ## Sobre o DeepLabCut diff --git a/content/pt/case-studies/gw-discov.md b/content/pt/case-studies/gw-discov.md index 01206d0aba..4e8bcda54b 100644 --- a/content/pt/case-studies/gw-discov.md +++ b/content/pt/case-studies/gw-discov.md @@ -5,10 +5,11 @@ sidebar: false {{< figure src="/images/content_images/cs/gw_sxs_image.png" class="fig-center" caption="**Ondas gravitacionais**" alt="binary coalesce black hole generating gravitational waves" attr="*(Créditos de imagem: O projeto Simulating eXtreme Spacetimes (SXS) no LIGO)*" attrlink="https://youtu.be/Zt8Z_uzG71o" >}} -
-

O ecossistema científico Python é uma infraestrutura crítica para a pesquisa feita no LIGO.

-
---David Shoemaker, Colaborador Científico no LIGO
-
+{{< blockquote + cite="https://www.youtube.com/watch?v=BIvezCVcsYs" + by="David Shoemaker, *Colaborador Científico no LIGO*" >}} +O ecossistema científico Python é uma infraestrutura crítica para a pesquisa feita no LIGO. +{{< /blockquote >}} ## Sobre [Ondas Gravitacionais](https://www.nationalgeographic.com/news/2017/10/what-are-gravitational-waves-ligo-astronomy-science/) e o [LIGO](https://www.ligo.caltech.edu) diff --git a/layouts/shortcodes/blockquote.html b/layouts/shortcodes/blockquote.html new file mode 100644 index 0000000000..4e327d224c --- /dev/null +++ b/layouts/shortcodes/blockquote.html @@ -0,0 +1,4 @@ +
+

{{- .Inner -}}

+ {{ with .Get "by" }}

—{{ . | markdownify }}

{{ end }} +
From 3df134fcc74de193295abed313c36fbff00d582c Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Fri, 17 Nov 2023 17:20:30 -0800 Subject: [PATCH 14/14] Fix Japanese deeplabcut figure caption --- content/ja/case-studies/deeplabcut-dnn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/case-studies/deeplabcut-dnn.md b/content/ja/case-studies/deeplabcut-dnn.md index c0403611d1..9061ebdaf5 100644 --- a/content/ja/case-studies/deeplabcut-dnn.md +++ b/content/ja/case-studies/deeplabcut-dnn.md @@ -3,7 +3,7 @@ title: "ケーススタディ: DeepLabCut 三次元姿勢推定" sidebar: false --- -{{< figure src="/images/content_images/cs/mice-hand.gif" class="fig-center" caption="**DeepLapCutを用いたマウスの手の動きの解析 **" alt="micehandanim" attr="*(Source: www.deeplabcut.org )*" attrlink="http://www.mousemotorlab.org/deeplabcut">}} +{{< figure src="/images/content_images/cs/mice-hand.gif" class="fig-center" caption="**DeepLapCutを用いたマウスの手の動きの解析**" alt="micehandanim" attr="*(Source: www.deeplabcut.org )*" attrlink="http://www.mousemotorlab.org/deeplabcut">}} {{< blockquote cite="https://news.harvard.edu/gazette/story/newsplus/harvard-researchers-awarded-czi-open-source-award/"