Skip to content

Commit

Permalink
remove advanced users section, minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dylansdaniels committed May 6, 2024
1 parent ea04030 commit d3d5c9c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 159 deletions.
56 changes: 5 additions & 51 deletions installation_instructions/linux/linux.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<head>
<!-- <meta charset="utf-8" /> --> <!-- old version -->
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- set the viewport https://www.w3schools.com/css/css_rwd_viewport.asp -->
<title>Tutorials - HNN</title>
<title>Installation - HNN</title>
<!-- import CSS style sheet from Github directory -->
<link rel = "stylesheet" type = "text/css" href = "../../html-styling/stylesheet.css" />
</head>
Expand All @@ -23,8 +23,8 @@
<div class="navbar">
<div id="wrapper">
<img src="https://hnn.brown.edu/wp-content/uploads/2018/05/mainlogo3.png" alt="HNN" scale="0">
<a href="https://hnn.brown.edu/index.php/tutorials/#jumptutorials">TUTORIALS</a>
<a href="https://hnn.brown.edu">HOME</a>
<a href="https://hnn.brown.edu/installation-instructions/">Installation</a>
<a href="https://hnn.brown.edu">Home</a>
</div>
</div>

Expand All @@ -36,60 +36,14 @@
<!-- set width for body to 900px -->
<div id="wrapper">

<!-- add button to scroll to top -->
<button onclick="topFunction()" id="myBtn" title="Scroll to top">Top</button>

<!-- script for scroll button function -->
<script>
//Get the button:
mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
</script>

<!-- return to tutorials page -->
<div style="text-align:center; vertical-align: middle; padding:10px;">
<p></p>

<tbody>
<tr style="border: none;">
<td style="border: none; width: 33.3%; padding: 1px;">
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
<!--<a style="text-decoration: none" href="https://hnn.brown.edu/index.php/tutorials/">-->
<p><img src="https://hnn.brown.edu/wp-content/uploads/2019/06/EEG_Brain.png" width="60" height="auto"></p>
<p style=" font-family: sans-serif; font-size: x-large; font-weight:700; color: #1156a3; border:0px; margin:0px;">Tutorials</p>
<!--</a>-->
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
</td>
</tr>
</tbody>
</div>

<!-- your contents go here -->

<!-- </body> -->
<!-- </html> -->
<!-- END -->
<h1 id="linux-installation-instructions">Linux Installation Instructions</h1>
<h2 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<h3 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<p>We recommend the Docker installation method for Linux.</p>
<p>Updated installation instructions for HNN GUI are currently being developed. Thank you for your patience while we work to bring you an easier installation process.</p>
<p>In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method</p>
<h2 id="advanced-users-local-installation">Advanced Users: Local Installation</h2>
<p>Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/ubuntu/">here</a></p>
<br><br><br><br>
3 changes: 1 addition & 2 deletions installation_instructions/linux/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ Updated installation instructions for HNN GUI are currently being developed. Tha

In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method

## Advanced Users: Local Installation

Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/ubuntu/">here</a>

56 changes: 5 additions & 51 deletions installation_instructions/macos/macos.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<head>
<!-- <meta charset="utf-8" /> --> <!-- old version -->
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- set the viewport https://www.w3schools.com/css/css_rwd_viewport.asp -->
<title>Tutorials - HNN</title>
<title>Installation - HNN</title>
<!-- import CSS style sheet from Github directory -->
<link rel = "stylesheet" type = "text/css" href = "../../html-styling/stylesheet.css" />
</head>
Expand All @@ -23,8 +23,8 @@
<div class="navbar">
<div id="wrapper">
<img src="https://hnn.brown.edu/wp-content/uploads/2018/05/mainlogo3.png" alt="HNN" scale="0">
<a href="https://hnn.brown.edu/index.php/tutorials/#jumptutorials">TUTORIALS</a>
<a href="https://hnn.brown.edu">HOME</a>
<a href="https://hnn.brown.edu/installation-instructions/">Installation</a>
<a href="https://hnn.brown.edu">Home</a>
</div>
</div>

Expand All @@ -36,60 +36,14 @@
<!-- set width for body to 900px -->
<div id="wrapper">

<!-- add button to scroll to top -->
<button onclick="topFunction()" id="myBtn" title="Scroll to top">Top</button>

<!-- script for scroll button function -->
<script>
//Get the button:
mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
</script>

<!-- return to tutorials page -->
<div style="text-align:center; vertical-align: middle; padding:10px;">
<p></p>

<tbody>
<tr style="border: none;">
<td style="border: none; width: 33.3%; padding: 1px;">
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
<!--<a style="text-decoration: none" href="https://hnn.brown.edu/index.php/tutorials/">-->
<p><img src="https://hnn.brown.edu/wp-content/uploads/2019/06/EEG_Brain.png" width="60" height="auto"></p>
<p style=" font-family: sans-serif; font-size: x-large; font-weight:700; color: #1156a3; border:0px; margin:0px;">Tutorials</p>
<!--</a>-->
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
</td>
</tr>
</tbody>
</div>

<!-- your contents go here -->

<!-- </body> -->
<!-- </html> -->
<!-- END -->
<h1 id="macos-installation-instructions">MacOS Installation Instructions</h1>
<h2 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<h3 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<p>We recommend the Docker installation method for Mac.</p>
<p>Updated installation instructions for HNN GUI are currently being developed. Thank you for your patience while we work to bring you an easier installation process.</p>
<p>In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method for MacOS</p>
<h2 id="advanced-users-local-installation">Advanced Users: Local Installation</h2>
<p>Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/mac/">here</a></p>
<br><br><br><br>
3 changes: 1 addition & 2 deletions installation_instructions/macos/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ Updated installation instructions for HNN GUI are currently being developed. Tha

In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method for MacOS

## Advanced Users: Local Installation

Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/mac/">here</a>

56 changes: 5 additions & 51 deletions installation_instructions/windows/windows.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<head>
<!-- <meta charset="utf-8" /> --> <!-- old version -->
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- set the viewport https://www.w3schools.com/css/css_rwd_viewport.asp -->
<title>Tutorials - HNN</title>
<title>Installation - HNN</title>
<!-- import CSS style sheet from Github directory -->
<link rel = "stylesheet" type = "text/css" href = "../../html-styling/stylesheet.css" />
</head>
Expand All @@ -23,8 +23,8 @@
<div class="navbar">
<div id="wrapper">
<img src="https://hnn.brown.edu/wp-content/uploads/2018/05/mainlogo3.png" alt="HNN" scale="0">
<a href="https://hnn.brown.edu/index.php/tutorials/#jumptutorials">TUTORIALS</a>
<a href="https://hnn.brown.edu">HOME</a>
<a href="https://hnn.brown.edu/installation-instructions/">Installation</a>
<a href="https://hnn.brown.edu">Home</a>
</div>
</div>

Expand All @@ -36,60 +36,14 @@
<!-- set width for body to 900px -->
<div id="wrapper">

<!-- add button to scroll to top -->
<button onclick="topFunction()" id="myBtn" title="Scroll to top">Top</button>

<!-- script for scroll button function -->
<script>
//Get the button:
mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
</script>

<!-- return to tutorials page -->
<div style="text-align:center; vertical-align: middle; padding:10px;">
<p></p>

<tbody>
<tr style="border: none;">
<td style="border: none; width: 33.3%; padding: 1px;">
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
<!--<a style="text-decoration: none" href="https://hnn.brown.edu/index.php/tutorials/">-->
<p><img src="https://hnn.brown.edu/wp-content/uploads/2019/06/EEG_Brain.png" width="60" height="auto"></p>
<p style=" font-family: sans-serif; font-size: x-large; font-weight:700; color: #1156a3; border:0px; margin:0px;">Tutorials</p>
<!--</a>-->
</td>

<td style="border: none; width: 33.3%; padding: 1px;">
</td>
</tr>
</tbody>
</div>

<!-- your contents go here -->

<!-- </body> -->
<!-- </html> -->
<!-- END -->
<h1 id="windows-installation-instructions">Windows Installation Instructions</h1>
<h2 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<h3 id="recommended-method-docker-installation">Recommended Method: Docker Installation</h2>
<p>We recommend the Docker installation method for Windows.</p>
<p>Updated installation instructions for HNN GUI are currently being developed. Thank you for your patience while we work to bring you an easier installation process.</p>
<p>In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method on Windows</p>
<h2 id="advanced-users-local-installation">Advanced Users: Local Installation</h2>
<p>Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/windows/">here</a></p>
<br><br><br><br>
3 changes: 1 addition & 2 deletions installation_instructions/windows/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ Updated installation instructions for HNN GUI are currently being developed. Tha

In the meantime, please see the following <a href="https://github.com/jonescompneurolab/hnn/pull/337">GitHub page</a> which outlines the essential components of the Docker installation method on Windows

## Advanced Users: Local Installation

Intructions for local installation can be found <a href="https://jonescompneurolab.github.io/hnn/installer/windows/">here</a>

0 comments on commit d3d5c9c

Please sign in to comment.