Template: Difference between revisions

From datarecoverywiki.com
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
     <title>Data Recovery Resources</title>
     <title>Data Recovery Resources</title>
     <style>
     <style>
         /* Simple CSS to layout the grid */
         /* General page styling */
         .grid-container {
         body {
             display: grid;
             font-family: Arial, sans-serif;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .grid-item {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
         }
         }


         /* Table of Contents (TOC) styling */
         /* Table of Contents (TOC) styling to match MediaWiki style */
         #toc {
         #toc {
             background-color: #f9f9f9;
             background-color: #f8f9fa;
             border: 1px solid #ccc;
             border: 1px solid #a2a9b1;
             border-radius: 5px;
             border-radius: 5px;
             padding: 15px;
             padding: 10px;
             margin-bottom: 20px;
             margin-bottom: 20px;
             width: 100%;
             width: 250px;
            font-size: 0.9em;
         }
         }


         #toc h2 {
         #toc h2 {
             margin-top: 0;
            font-size: 1em;
             margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
         }
         }


        /* Hide link styling */
        #toc h2 .hide-link {
            font-size: 0.8em;
            color: #0366d6;
            cursor: pointer;
            text-decoration: none;
        }
        #toc h2 .hide-link:hover {
            text-decoration: underline;
        }
        /* TOC list styling */
         #toc ul {
         #toc ul {
             list-style-type: none;
             list-style-type: none;
             padding: 0;
             padding: 0;
            margin: 10px 0;
         }
         }


Line 40: Line 52:
         }
         }


        /* Nested numbering */
        #toc ul li::before {
            content: counters(item, ".") " ";
            counter-increment: item;
        }
        #toc ul ul {
            margin-left: 20px;
        }
        /* Reset numbering for nested lists */
        #toc ul {
            counter-reset: item;
        }
        /* Link styling */
         #toc ul li a {
         #toc ul li a {
             text-decoration: none;
             text-decoration: none;
             color: #007bff;
             color: #0366d6;
         }
         }


Line 49: Line 77:
         }
         }
     </style>
     </style>
    <script>
        // JavaScript to toggle visibility of TOC contents
        function toggleTOC() {
            const tocList = document.querySelector("#toc ul");
            const hideLink = document.querySelector(".hide-link");
            if (tocList.style.display === "none") {
                tocList.style.display = "block";
                hideLink.textContent = "[hide]";
            } else {
                tocList.style.display = "none";
                hideLink.textContent = "[show]";
            }
        }
    </script>
</head>
</head>
<body>
<body>
Line 55: Line 98:
<p> Test </p>
<p> Test </p>


<!-- Table of Contents -->
<div id="toc">
<div id="toc">
     <h2>Table of Contents</h2>
     <h2>Contents <a href="javascript:void(0);" class="hide-link" onclick="toggleTOC()">[hide]</a></h2>
     <ul>
     <ul>
         <li><a href="#section0">What tools you will need</a></li>
         <li><a href="#section0">What tools you will need</a>
            <ul>
                <li><a href="#required">Required</a></li>
                <li><a href="#optional">Optional but useful</a></li>
            </ul>
        </li>
         <li><a href="#section1">1. Uses of this skill</a></li>
         <li><a href="#section1">1. Uses of this skill</a></li>
         <li><a href="#section2">2. Step-by-step guide with images</a></li>
         <li><a href="#section2">2. Step-by-step guide with images</a></li>
Line 74: Line 123:
         <tr></tr>
         <tr></tr>
         <tr>
         <tr>
             <h3>Required</h3>
             <h3 id="required">Required</h3>
             <ul>
             <ul>
                 <li>Test</li>
                 <li>Test</li>
Line 80: Line 129:
         </tr>
         </tr>
         <tr>
         <tr>
           <h3>Optional but useful</h3>
           <h3 id="optional">Optional but useful</h3>
             <ul>
             <ul>
                 <li>Test</li>
                 <li>Test</li>

Revision as of 00:15, 11 November 2024

Data Recovery Resources

Background information

Test

What tools you will need

Items are not listed in any particular order

Required

  • Test

Optional but useful

  • Test

1. Uses of this skill

Test

2. Step-by-step guide with images

Insert step-by-step walkthrough with images and summary text here

3. Flow chart of order of operations

Insert a flow chart of steps and actions for each task (create using diagram)

4. Troubleshooting/tips and tricks

Fixes to any common issues that were encountered or could be easily encountered

5. Related Topics

Topics such as desoldering to chip off or firmware dumping for disk PCB repairs

6. Further reading

External references in wiki references can just be cited through the keyword link

  1. Reference 1: Source details
  2. Reference 2: Source details