-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Escape template strings for better formatting
- Loading branch information
Showing
2 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
const summaryEmailHTML = ` | ||
<div> | ||
<h3> | ||
<strong> | ||
const summaryEmailHTML = ` \ | ||
<div> \ | ||
<h3> \ | ||
<strong> \ | ||
Curren viesti opettajalle | ||
</strong> | ||
</h3> | ||
</strong> \ | ||
</h3> \ | ||
<p> | ||
Hei | ||
</p> | ||
</p> \ | ||
<p> | ||
Kiitos Curren käyttämisestä opetuksen suunnitteluun. Alta näet kurssillesi tekemäsi pedagogiset valinnat ja niitä tukevat Helsingin yliopiston tarjoamat sovellukset. Voit nyt jatkaa suunnittelua perehtymällä välineisiin tarkemmin opetustyön ohjeiden avulla ja olemalla lisäksi tarvittaessa yhteydessä opetusteknologian käytön tukipalveluihin. Kurssin arvioinnissa käytetään Norppa-palautejärjestelmää, jonne voit myös lisätä omia kysymyksiäsi. Linkit mainittuihin palveluihin löydät alta. | ||
</p> | ||
</p> \ | ||
<p> | ||
Hyvää jatkoa suunnitteluun! Olethan yhteydessä opiskelijoihin ja tarpeen mukaan tukipalveluihin hyvissä ajoin ennen kurssin alkamista. | ||
</p> | ||
</p> \ | ||
<p> | ||
********* | ||
Opetustyön ohjeet: | ||
<a href="https://teaching.helsinki.fi/"> | ||
https://teaching.helsinki.fi/ | ||
</a> | ||
</p> | ||
Opetustyön ohjeet: \ | ||
<a href="https://teaching.helsinki.fi/"> \ | ||
https://teaching.helsinki.fi/ \ | ||
</a> \ | ||
</p> \ | ||
<p> | ||
Moodle-aiheiset palvelupyynnöt: | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
</p> | ||
Moodle-aiheiset palvelupyynnöt: \ | ||
<a href="mailto:[email protected]"> \ | ||
[email protected] \ | ||
</a> \ | ||
</p> \ | ||
<p> | ||
Muut opetusteknologiaan liittyvät palvelupyynnöt: | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
</p> | ||
Muut opetusteknologiaan liittyvät palvelupyynnöt: \ | ||
<a href="mailto:[email protected]"> \ | ||
[email protected] \ | ||
</a> \ | ||
</p> \ | ||
<p> | ||
Norppa-kurssipalautejärjestelmä: | ||
<a href="http://coursefeedback.helsinki.fi/"> | ||
http://coursefeedback.helsinki.fi/ | ||
Norppa-kurssipalautejärjestelmä: \ | ||
<a href="http://coursefeedback.helsinki.fi/"> \ | ||
http://coursefeedback.helsinki.fi/ \ | ||
</a> | ||
********** | ||
</p> | ||
</div> | ||
********** | ||
</p> \ | ||
</div> \ | ||
` | ||
|
||
export default summaryEmailHTML |