Skip to content

Commit

Permalink
Permet de préparer le blabla pour Youtube
Browse files Browse the repository at this point in the history
  • Loading branch information
nicmarti committed Apr 21, 2023
1 parent 9d2abe5 commit 6d7cf7a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions app/views/Publisher/showOneRoom.scala.html
Expand Up @@ -37,15 +37,13 @@ <h4>@StringUtils.abbreviate(p.title, 99)</h4>
<h5>@Messages(p.talkType.id)</h5>

<div class="text-sm text-left">
<p>Pour rester informé sur l'actualité de Devoxx France, suivez nous sur linkedIn : https://www.linkedin.com/in/devoxxfrance/,
twitter : https://twitter.com/DevoxxFR ou consultez notre site web https://www.devoxx.fr/</p>
@if(p.title.length>99) { Titre complet : @p.title } <br>
@p.allSpeakers.map { speaker =>
<strong>@speaker.cleanFirstName @speaker.cleanLastName</strong>
@if(speaker.company.isDefined) { @speaker.company.get}
}
@p.allSpeakers.map(speaker => s"${speaker.cleanFirstName} ${speaker.cleanLastName}").mkString(", ") <br>

<br>
@p.summary<br>
@Html(p.summaryAsHtml)
<p>Pour rester informé sur l'actualité de Devoxx France, suivez nous sur linkedIn : https://www.linkedin.com/in/devoxxfrance/,
twitter : https://twitter.com/DevoxxFR ou consultez notre site web https://www.devoxx.fr/</p>
</div>
<div class="mt-5">
<br>
Expand Down

0 comments on commit 6d7cf7a

Please sign in to comment.