Added version macOS

This commit is contained in:
Franca Debole 2019-10-31 10:33:46 +01:00
parent 5a40450119
commit c0b0a98625
5 changed files with 76 additions and 2 deletions

View File

@ -112,7 +112,7 @@
<p>Per accedere a <strong>eduroam </strong>è richiesta l&#8217;installazione di un profilo.</p>
<span class="fa fa-download"> </span><a href="files/CNR-ISTI-Eduroam-MacOS-iOS.mobileconfig"> Profilo da scaricare </a>
<p><strong>Installazione dei profili di configurazione per MacOS X Yosemite(10.10.x), Mavericks(10.9.x), Mountain Lion(10.8), Lion(10.7)</strong></p>
<p><strong>Installazione dei profili di configurazione per MacOS dalla versione Lion( 10.7) in poi (Mojave 10.14)</strong></p>
<p>Dopo aver scaricato il profilo</p>
<ul>
<li>Eseguire con un account amministratore, cliccandoci sopra, e installarli seguendo le istruzioni a schermo
@ -121,7 +121,7 @@
<p><img class="wp-image-41703" src="img/eduroam-macos-1.png" alt="macos"/>&nbsp;&nbsp;<img class="wp-image-41703" src="img/eduroam-macos-2.png" alt="macos" /></p>
<p><img class="wp-image-41703" src="img/eduroam-macos-3.png" alt="macos"/>&nbsp;&nbsp;<img class="wp-image-41703" src="img/eduroam-macos-4.png" alt="macos"/></p>
<p>I successivi accessi saranno automatici.</p>
</div>
</div>
<p>&nbsp;</p>
<h4 class="more closed"><strong>Connessione alla rete eduroam con Windows 8 e 10</strong></h4>
<div class="tsmall">

BIN
img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

37
index.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Infrastruttura ISTI</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap-4.3.1-dist/css/bootstrap.min.css">
<script src="jquery-3.4.1.min.js"></script>
<script src="bootstrap-4.3.1-dist/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
</head>
<body>
<div id="nav"></div>
<div class="container">
<h3>Infrastruttura Servizi ISTI</h3>
<p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window).</p>
<p>Only when the button is clicked, the navigation bar will be displayed.</p>
<p>Tip: You can also remove the .navbar-expand-md class to ALWAYS hide navbar links and display the toggler button.</p>
</div>
<script>
jQuery('h4.more').click(
function() {
jQuery(this).toggleClass('closed').toggleClass('opened');
jQuery(this).next().toggle();
jQuery(this).next().next().toggle();
}
);
jQuery(document).ready(function(){
jQuery('#nav').load('nav.html');
});
</script>
</body>
</html>

2
jquery-3.4.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

35
nav.html Normal file
View File

@ -0,0 +1,35 @@
<div>
<div class="navbar-header">
<a class="navbar-brand" rel="home" href="#" title="">
<img style="margin-top: 5px;height:50px;width:50px" src="img/logo.png"/>
</a>
</div>
<nav class="navbar navbar-expand-md bg-light navbar-light">
<div class="container-fluid">
<!-- Brand -->
<a class="navbar-brand" href="index.html">Home</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="eduroam.html">Eduroam</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://redmine-s2i2s.isti.cnr.it/">Ticketing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://gitea-s2i2s.isti.cnr.it/explore/repos">Git</a>
</li>
</ul>
</div>
</div>
</nav>
</div>