diff options
author | Vincent Ambo <mail@tazj.in> | 2022-07-28T15·45+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-07-28T15·54+0000 |
commit | ba682cd91b3f8ce04478ac3b29c3230fc3f443f5 (patch) | |
tree | 1ad797c3c6ff8245500edeca36c9a2cf4962c642 /users | |
parent | 0f1cc9b2bc1a5b24a6d64c783519558395af74ce (diff) |
fix(tazjin/predlozhnik): typo fix & soft noscript landing r/4336
Change-Id: I6a5ce127d9bfa6e48b5a58ccfbbe684d7eb863ba Reviewed-on: https://cl.tvl.fyi/c/depot/+/5991 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/predlozhnik/index.html | 9 | ||||
-rw-r--r-- | users/tazjin/predlozhnik/src/main.rs | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/users/tazjin/predlozhnik/index.html b/users/tazjin/predlozhnik/index.html index 0252cca0dce6..6af1adc0bfba 100644 --- a/users/tazjin/predlozhnik/index.html +++ b/users/tazjin/predlozhnik/index.html @@ -12,4 +12,13 @@ <script>window.yaContextCb=window.yaContextCb||[]</script> <script src="https://yandex.ru/ads/system/context.js" async></script> </head> + <body> + <noscript> + <h1>Предложник</h1> + <p> + ... показывает с какими падежами употребляются предлоги в + русском языке. Но, к сожалению, только с помощью Javascript. + </p> + </noscript> + </body> </html> diff --git a/users/tazjin/predlozhnik/src/main.rs b/users/tazjin/predlozhnik/src/main.rs index 4f3d7fc605ca..4fa68253f9c1 100644 --- a/users/tazjin/predlozhnik/src/main.rs +++ b/users/tazjin/predlozhnik/src/main.rs @@ -280,8 +280,8 @@ window.yaContextCb.push(()=>{ html! { <> <div id="header"> - <h1>{"Прелдожник"}</h1> - <p>{"... показывает которые предлоги употребляются в каких падежах на русском языке."}</p> + <h1>{"Предложник"}</h1> + <p>{"... показывает с какими падежами употребляются предлоги в русском языке."}</p> </div> <h2>{"Выбирай предлог:"}</h2> |