File size: 2,282 Bytes
9b5ae14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>News Portal - Article</title>
    <style>
        body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; margin: 0; background: #f4f4f4; color: #333; }
        .container { max-width: 800px; margin: 40px auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        header { border-bottom: 2px solid #eee; margin-bottom: 20px; padding-bottom: 10px; }
        h1 { margin: 0; color: #222; }
        
        /* Navigation Styles */
        .nav-buttons { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 20px; border-top: 2px solid #eee; }
        .btn { padding: 12px 24px; background: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; }
        .btn:hover { background: #0056b3; }
        .btn:disabled { background: #ccc; cursor: not-allowed; }
    </style>
</head>
<body>

<div class="container">
    <header>
        <small>News Article</small>
        <h1>Article Title Here</h1> 
    </header>

    <div class="nav-buttons">
        <button id="prevBtn" class="btn" onclick="navigate(-1)">← Previous</button>
        <button id="nextBtn" class="btn" onclick="navigate(1)">Next →</button>
    </div>
</div>

<script>
    // Configuration
    const totalArticles = 20;
    
    // Get current article number from filename (e.g., "1.html" -> 1)
    const currentPath = window.location.pathname;
    const filename = currentPath.substring(currentPath.lastIndexOf('/') + 1);
    const currentNum = parseInt(filename.split('.')[0]) || 1;

    // Handle button visibility
    if (currentNum <= 1) document.getElementById('prevBtn').disabled = true;
    if (currentNum >= totalArticles) document.getElementById('nextBtn').disabled = true;

    function navigate(direction) {
        const targetNum = currentNum + direction;
        if (targetNum >= 1 && targetNum <= totalArticles) {
            // Adjust the path below if your files are in a different folder
            window.location.href = targetNum + ".html";
        }
    }
</script>

</body>
</html>