Skip to content

Commit

Permalink
Improved the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
olekscode committed Jun 21, 2024
1 parent 376da64 commit dd13636
Show file tree
Hide file tree
Showing 10 changed files with 121 additions and 20 deletions.
Binary file added website/img/logos/cirad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/img/logos/evref.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/img/logos/inria.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/img/logos/novisad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/img/logos/sens.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 22 additions & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ <h3>Oleksandr Zaitsev</h3>

<footer>
<p>
&copy; 2024. All rights reserved by
<b>&copy; 2024. All rights reserved</b> by
<a href="https://consortium.pharo.org" target="_blank" rel="noopener">Pharo Consortium</a>
</p>
<p>The source code of this website is licensed under
Expand All @@ -237,6 +237,27 @@ <h3>Oleksandr Zaitsev</h3>
target="_blank"
rel="noopener noreferrer">GitHub</a>.
</p>

<p><b>isLoop</b> is supported by CIRAD (UMR SENS), Inria (Evref)
and the University of Novi Sad.</p>

<div class="footer-logos">
<a href="https://www.cirad.fr/" rel="noopener">
<img src="./img/logos/cirad.png">
</a>
<a href="https://umr-sens.fr" rel="noopener">
<img src="./img/logos/sens.png">
</a>
<a href="https://inria.fr/" rel="noopener">
<img src="./img/logos/inria.png">
</a>
<a href="https://www.inria.fr/en/evref" rel="noopener">
<img src="./img/logos/evref.png">
</a>
<a href="https://www.uns.ac.rs/index.php/en/" rel="noopener">
<img src="./img/logos/novisad.png">
</a>
</div>
</footer>

<script src="./emails.js"></script>
Expand Down
23 changes: 22 additions & 1 deletion website/program.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ <h2>Day 5: Code Analysis</h2>

<footer>
<p>
&copy; 2024. All rights reserved by
<b>&copy; 2024. All rights reserved</b> by
<a href="https://consortium.pharo.org" target="_blank" rel="noopener">Pharo Consortium</a>
</p>
<p>The source code of this website is licensed under
Expand All @@ -201,6 +201,27 @@ <h2>Day 5: Code Analysis</h2>
target="_blank"
rel="noopener noreferrer">GitHub</a>.
</p>

<p><b>isLoop</b> is supported by CIRAD (UMR SENS), Inria (Evref)
and the University of Novi Sad.</p>

<div class="footer-logos">
<a href="https://www.cirad.fr/" rel="noopener">
<img src="./img/logos/cirad.png">
</a>
<a href="https://umr-sens.fr" rel="noopener">
<img src="./img/logos/sens.png">
</a>
<a href="https://inria.fr/" rel="noopener">
<img src="./img/logos/inria.png">
</a>
<a href="https://www.inria.fr/en/evref" rel="noopener">
<img src="./img/logos/evref.png">
</a>
<a href="https://www.uns.ac.rs/index.php/en/" rel="noopener">
<img src="./img/logos/novisad.png">
</a>
</div>
</footer>

<script src="./script.js"></script>
Expand Down
53 changes: 37 additions & 16 deletions website/resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,22 +100,43 @@ <h1>Learning Resources</h1>
</main>

<footer>
<p>
&copy; 2024. All rights reserved by
<a href="https://consortium.pharo.org" target="_blank" rel="noopener">Pharo Consortium</a>
</p>
<p>The source code of this website is licensed under
<a
href="https://github.com/pharo-project/pharo-summer-school//blob/main/LICENSE"
target="_blank"
rel="license noopener noreferrer">The MIT License</a>
and available on
<a
href="https://github.com/pharo-project/pharo-summer-school"
target="_blank"
rel="noopener noreferrer">GitHub</a>.
</p>
</footer>
<p>
<b>&copy; 2024. All rights reserved</b> by
<a href="https://consortium.pharo.org" target="_blank" rel="noopener">Pharo Consortium</a>
</p>
<p>The source code of this website is licensed under
<a
href="https://github.com/pharo-project/pharo-summer-school//blob/main/LICENSE"
target="_blank"
rel="license noopener noreferrer">The MIT License</a>
and available on
<a
href="https://github.com/pharo-project/pharo-summer-school"
target="_blank"
rel="noopener noreferrer">GitHub</a>.
</p>

<p><b>isLoop</b> is supported by CIRAD (UMR SENS), Inria (Evref)
and the University of Novi Sad.</p>

<div class="footer-logos">
<a href="https://www.cirad.fr/" rel="noopener">
<img src="./img/logos/cirad.png">
</a>
<a href="https://umr-sens.fr" rel="noopener">
<img src="./img/logos/sens.png">
</a>
<a href="https://inria.fr/" rel="noopener">
<img src="./img/logos/inria.png">
</a>
<a href="https://www.inria.fr/en/evref" rel="noopener">
<img src="./img/logos/evref.png">
</a>
<a href="https://www.uns.ac.rs/index.php/en/" rel="noopener">
<img src="./img/logos/novisad.png">
</a>
</div>
</footer>

<script src="./script.js"></script>
</body>
Expand Down
19 changes: 18 additions & 1 deletion website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,24 @@ footer {
}

footer p {
margin: 0;
margin-top: 0.3em;
margin-bottom: 0;
}

footer img {
height: 2.5rem;
background: transparent;
margin-top: 0.7rem;
margin-left: 0.6rem;
margin-right: 0.6rem;
}

.footer-logos {
margin-top: 0.9rem;
}

.footer-logos a {
text-decoration: none;
}

@media only screen and (min-width: 768px) {
Expand Down
23 changes: 22 additions & 1 deletion website/venue.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ <h2>Public Transport in Montpellier: Tickets for trams and buses</h2>

<footer>
<p>
&copy; 2024. All rights reserved by
<b>&copy; 2024. All rights reserved</b> by
<a href="https://consortium.pharo.org" target="_blank" rel="noopener">Pharo Consortium</a>
</p>
<p>The source code of this website is licensed under
Expand All @@ -352,6 +352,27 @@ <h2>Public Transport in Montpellier: Tickets for trams and buses</h2>
target="_blank"
rel="noopener noreferrer">GitHub</a>.
</p>

<p><b>isLoop</b> is supported by CIRAD (UMR SENS), Inria (Evref)
and the University of Novi Sad.</p>

<div class="footer-logos">
<a href="https://www.cirad.fr/" rel="noopener">
<img src="./img/logos/cirad.png">
</a>
<a href="https://umr-sens.fr" rel="noopener">
<img src="./img/logos/sens.png">
</a>
<a href="https://inria.fr/" rel="noopener">
<img src="./img/logos/inria.png">
</a>
<a href="https://www.inria.fr/en/evref" rel="noopener">
<img src="./img/logos/evref.png">
</a>
<a href="https://www.uns.ac.rs/index.php/en/" rel="noopener">
<img src="./img/logos/novisad.png">
</a>
</div>
</footer>

<script src="./script.js"></script>
Expand Down

0 comments on commit dd13636

Please sign in to comment.