Skip to content

Commit

Permalink
added quick page for göteborg 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliasharp committed May 10, 2024
1 parent 85d6632 commit f23ab36
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 5 deletions.
77 changes: 77 additions & 0 deletions Pages/gbg-2024.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
@page
@{

}
<section>
<div class="container">
<div class="row">
<img src="/logos/GreenForLightBackground.png" alt="Logo of Swetugg Göteborg" width="500" class="logo-image" />
</div>
<p />
<div class="row">
<p>
We have set a date for Göteborg! 16-17 September 2024.
</p>
<p>

</p>
<p>
Not everything is setup yet as you can see but the <a href="https://sessionize.com/swetugg-goteborg-2024" target="_blank">Call for Papers is now open</a>.
</p>
<p style="padding-top: 10px">
We are going to sell tickets in June and we are finalizing the offers for sponsors.
<p />
<p>
If you like to talk to us, here is our email addresses:
</p>
<p style="padding-top: 5px">
<ul>
<li><a href="mailto:[email protected]">general questions: info@swetugg.se</a>
<li><a href="mailto:[email protected]">questions about speaking: speaker@swetugg.se</a>
<li><a href="mailto:[email protected]">questions about sponsoring: sponsors@swetugg.se</a>
</ul>
</p>
</div>

<div class="row">
<p style="padding-top: 30px">
Looking for information or sessions from previous years? All material is archived here:
<p/>
<p style ="padding-top: 5px">
<ul>
<li>
<a href="/swetugg-2015">Stockholm 2015</a>
</li>
<li>
<a href="/swetugg-2016">Stockholm 2016</a>
</li>
<li>
<a href="/swetugg-2017">Stockholm 2017</a>
</li>
<li>
<a href="/swetugg-2018">Stockholm 2018</a>
</li>
<li>
<a href="/swetugg-2019">Stockholm 2019</a>
</li>
<li>
<a href="/sthlm-2020">Stockholm 2020</a>
</li>
<li>
<a href="/gbg-2022">Göteborg 2022</a>
</li>
<li>
<a href="/sthlm-2023">Stockholm 2023</a>
</li>
<li>
<a href="/gbg-2023">Göteborg 2023</a>
</li>
<li>
<a href="/sthml-2024">Stockholm 2024</a>
</li>
</ul>
</p>
</div>
</div>
</section>

2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

app.MapGet("/", async context =>

Check warning on line 33 in Program.cs

View workflow job for this annotation

GitHub Actions / build

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
{
context.Response.Redirect("/sthlm-2024");
context.Response.Redirect("/gbg-2024");
});

app.MapGet("/{slug}/now-feed", (string slug, IConferenceService conferenceService) =>
Expand Down
9 changes: 5 additions & 4 deletions wwwroot/style/swetugg.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ address {

a {
background-color: transparent;
text-decoration: none;
/*text-decoration: none;*/
font-weight: bold;
color: inherit;
}

Expand Down Expand Up @@ -437,7 +438,7 @@ th {
:root {
--width-max: 1170px;
--spacing-horizontal: 15px;
--color-primary: #A30046;
--color-primary: #404040;
}

body {
Expand Down Expand Up @@ -468,7 +469,7 @@ h1 {
text-align: center;
letter-spacing: 0.1em;
margin-bottom: 17px;
color: #A30046;
color: #404040;
}

h2 {
Expand All @@ -479,7 +480,7 @@ h2 {
}

a {
color: #A30046;
color: #404040;
transition: all 0.2s ease-in-out;
}

Expand Down

0 comments on commit f23ab36

Please sign in to comment.