27 lines
		
	
	
		
			834 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			834 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE HTML>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <title>OpenWebRX Settings</title>
 | 
						|
    <link rel="shortcut icon" type="image/x-icon" href="../static/favicon.ico" />
 | 
						|
    <link rel="stylesheet" href="../static/css/bootstrap.min.css" />
 | 
						|
    <link rel="stylesheet" type="text/css" href="../static/css/admin.css" />
 | 
						|
    <script src="../compiled/settings.js"></script>
 | 
						|
    <meta charset="utf-8">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
${header}
 | 
						|
<div class="container">
 | 
						|
    <div class="row">
 | 
						|
        <h1 class="col-12">Bookmarks</h1>
 | 
						|
        <div class="col-12">
 | 
						|
            Double-click the values in the table to edit them.
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="bookmarks">
 | 
						|
        ${bookmarks}
 | 
						|
        <div class="buttons container">
 | 
						|
            <button type="button" class="btn btn-primary bookmark-add">Add a new bookmark</button>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
</body> |