|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8" /> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"/> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"/> |
| 8 | + <meta name="referrer" content="origin-when-cross-origin"/> |
| 9 | + |
| 10 | + <title>Open Knowledge Maps Search Box</title> |
| 11 | + |
| 12 | + <link rel="stylesheet" href="search-flow/lib/bootstrap.min.css"> |
| 13 | + <link rel="stylesheet" href="search-flow/lib/bootstrap-multiselect.css"> |
| 14 | + |
| 15 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> |
| 16 | + <link rel="stylesheet" href="search-flow/css/search_box.css?v=2023-06-07"> |
| 17 | + |
| 18 | + <script type="module" src="search-flow/js/searchbox/runner.js"></script> |
| 19 | +</head> |
| 20 | + |
| 21 | +<body class="iframed"> |
| 22 | + <?php |
| 23 | + $search_box_class = "iframed"; |
| 24 | + include 'search-flow/inc/search-form/new-search-form.php'; |
| 25 | + |
| 26 | + //inlined from project-website/config.example.php |
| 27 | + //clean this up later |
| 28 | + $SITE_URL = "//localhost:8085/"; |
| 29 | + $HEADSTART_URL = $SITE_URL . "./headstart/"; |
| 30 | + $COMPONENTS_PATH = "components/"; |
| 31 | + $LIB_PATH = "lib/"; |
| 32 | + $SEARCH_FLOW_PATH = "./search-flow/"; |
| 33 | + $SNAPSHOT_PATH = $HEADSTART_URL . "server/storage/"; |
| 34 | + |
| 35 | + $PIWIK_ENABLED = false; |
| 36 | + $PIWIK_PATH = "piwik/"; |
| 37 | + $PIWIK_SITE_ID = "1"; |
| 38 | + # set it to true to force embed mode in Matomo (no cookies) |
| 39 | + $PIWIK_FORCE_EMBED = false; |
| 40 | + $GA_ENABLED = false; |
| 41 | + $GA_CODE = "XX-00000000-0"; |
| 42 | + |
| 43 | + $BASE_DOWN = false; |
| 44 | + $PUBMED_DOWN = false; |
| 45 | + $COOKIE_DOMAIN = ""; |
| 46 | + $GA_ENABLED = false; |
| 47 | + $PIWIK_FORCE_EMBED = true; |
| 48 | + //clean this up later |
| 49 | + |
| 50 | + //curl |
| 51 | + //pdo_sqlite |
| 52 | + //mbstring |
| 53 | + //fileinfo |
| 54 | + //xml |
| 55 | + ?> |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | +</body> |
| 60 | + |
| 61 | +</html> |
0 commit comments