You can add Public Access components such as the search panel or document results list to an existing web page using HTML tags, allowing for greater customization.
To add Public Access components to an existing web page:
The following is a sample web page with Public Access components added:
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- OBPA dependencies --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.min.js"></script> <!-- OBPA files --> <script src="obpa/obpa_dependencies.js"></script> <script src="obpa/obpa_app.js"></script> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="container" style="margin-top:10px;margin-bottom:10px;"> <div> <obpa-language-selector></obpa-language-selector> </div> <hr /> <div> <obpa-search-panel></obpa-search-panel> <!--<obpa-fulltext-search-panel></obpa-fulltext-search-panel>--> </div> <hr /> <div> <obpa-document-hitlist></obpa-document-hitlist> </div> </div> </body> </html>