{"id":17,"date":"2019-01-14T17:50:00","date_gmt":"2019-01-14T17:50:00","guid":{"rendered":"http:\/\/www.divetalking.com\/oceanseye\/?page_id=17"},"modified":"2026-07-26T21:14:13","modified_gmt":"2026-07-26T21:14:13","slug":"home","status":"publish","type":"page","link":"https:\/\/www.divetalking.com\/oceanseye\/","title":{"rendered":""},"content":{"rendered":"\n<!--\n=======================================================================\n  Oceanseye \u2014 Landing Page\n  WordPress-optimised content block  |  July 2026\n=======================================================================\n\nHOW TO USE\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n1. In WordPress Admin \u2192 Pages \u2192 Edit the Oceanseye page\n2. Switch the editor to \"Code editor\" (or use a Custom HTML block in Gutenberg)\n3. Replace the existing page content with this entire file\n4. Set the page template to \"Full Width\" \/ \"No Sidebar\" if available (theme-dependent)\n5. Update\n\nNOTES\n\u2500\u2500\u2500\u2500\u2500\u2500\n\u2022 All CSS is scoped to #oceanseye-page \u2014 no theme conflicts\n\u2022 No jQuery dependency \u2014 vanilla JS only, and only for the sonar-sweep\n  animation (pure CSS otherwise \u2014 the page works fully with JS disabled)\n\u2022 This is page CONTENT only \u2014 your theme's own header\/nav\/footer wraps\n  around it exactly as it already does; nothing here rebuilds site chrome\n\u2022 All 4 original links are preserved exactly, same destinations\n=======================================================================\n-->\n\n<div id=\"oceanseye-page\">\n\n<style>\n  #oceanseye-page {\n    --bg-deepest: #030f1a;\n    --bg-panel: #0a1f35;\n    --bg-panel-alt: #0e2740;\n    --accent: #0ea5e9;\n    --accent-glow: #38bdf8;\n    --accent-deep: #0369a1;\n    --text-primary: #e6f2fb;\n    --text-muted: #7d97ae;\n    --border-glow: rgba(56, 189, 248, 0.22);\n    font-family: 'Inter', -apple-system, sans-serif;\n    background: var(--bg-deepest);\n    color: var(--text-primary);\n    margin: 0 -2000px;\n    padding: 0 2000px;\n    overflow-x: hidden;\n  }\n  #oceanseye-page * { box-sizing: border-box; }\n  #oceanseye-page .oe-display {\n    font-family: 'Space Grotesk', 'Inter', sans-serif;\n    letter-spacing: -0.01em;\n  }\n  #oceanseye-page .oe-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }\n  #oceanseye-page .oe-eyebrow {\n    display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 12px;\n    font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;\n    color: var(--accent-glow); margin-bottom: 14px;\n  }\n\n  \/* ---- HERO ---- *\/\n  #oceanseye-page .oe-hero {\n    position: relative; padding: 90px 0 70px; text-align: center; overflow: hidden;\n    background:\n      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(14,165,233,0.16), transparent 70%),\n      linear-gradient(180deg, var(--bg-deepest) 0%, #041525 100%);\n  }\n  #oceanseye-page .oe-sonar {\n    position: absolute; top: 50%; left: 50%; width: 900px; height: 900px;\n    transform: translate(-50%, -50%); pointer-events: none; z-index: 0;\n  }\n  #oceanseye-page .oe-sonar-ring {\n    position: absolute; inset: 0; border: 1px solid var(--border-glow); border-radius: 50%;\n    animation: oe-ping 4s cubic-bezier(0,0.4,0.6,1) infinite;\n  }\n  #oceanseye-page .oe-sonar-ring:nth-child(2) { animation-delay: 1.3s; }\n  #oceanseye-page .oe-sonar-ring:nth-child(3) { animation-delay: 2.6s; }\n  @keyframes oe-ping {\n    0%   { transform: scale(0.15); opacity: 0; }\n    15%  { opacity: 0.9; }\n    100% { transform: scale(1); opacity: 0; }\n  }\n  @media (prefers-reduced-motion: reduce) {\n    #oceanseye-page .oe-sonar-ring { animation: none; opacity: 0.15; }\n  }\n  #oceanseye-page .oe-hero-inner { position: relative; z-index: 1; }\n  #oceanseye-page .oe-h1 {\n    font-size: clamp(34px, 5.4vw, 58px); font-weight: 700; line-height: 1.08; margin: 0 0 18px;\n    background: linear-gradient(135deg, #ffffff 0%, var(--accent-glow) 65%, var(--accent) 100%);\n    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;\n  }\n  #oceanseye-page .oe-hero-sub {\n    font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.65;\n  }\n  #oceanseye-page .oe-hero-sub a { color: var(--accent-glow); text-decoration: none; border-bottom: 1px solid var(--border-glow); }\n  #oceanseye-page .oe-hero-sub a:hover { border-color: var(--accent-glow); }\n\n  \/* ---- APP CARDS ---- *\/\n  #oceanseye-page .oe-apps {\n    padding: 60px 0 80px;\n    background: linear-gradient(180deg, #041525 0%, var(--bg-deepest) 100%);\n  }\n  #oceanseye-page .oe-app-grid {\n    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 28px;\n  }\n  #oceanseye-page .oe-app-card {\n    background: linear-gradient(160deg, var(--bg-panel) 0%, var(--bg-panel-alt) 100%);\n    border: 1px solid var(--border-glow); border-radius: 14px; padding: 32px 28px;\n    display: flex; flex-direction: column; transition: border-color .25s, transform .25s, box-shadow .25s;\n  }\n  #oceanseye-page .oe-app-card:hover {\n    border-color: var(--accent-glow); transform: translateY(-3px);\n    box-shadow: 0 12px 40px rgba(14,165,233,0.14);\n  }\n  #oceanseye-page .oe-app-icon {\n    width: 46px; height: 46px; margin-bottom: 18px; color: var(--accent-glow);\n  }\n  #oceanseye-page .oe-app-card h3 {\n    font-family: 'Space Grotesk', sans-serif; font-size: 21px; margin: 0 0 10px; font-weight: 600;\n  }\n  #oceanseye-page .oe-app-card p {\n    color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; flex: 1;\n  }\n  #oceanseye-page .oe-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }\n  #oceanseye-page .oe-btn {\n    display: inline-block; padding: 10px 18px; border-radius: 7px; font-size: 13.5px; font-weight: 600;\n    text-decoration: none; transition: background .2s, color .2s, border-color .2s;\n  }\n  #oceanseye-page .oe-btn-primary { background: var(--accent-deep); color: #fff; }\n  #oceanseye-page .oe-btn-primary:hover { background: var(--accent); }\n  #oceanseye-page .oe-btn-secondary { border: 1px solid var(--border-glow); color: var(--text-primary); }\n  #oceanseye-page .oe-btn-secondary:hover { border-color: var(--accent-glow); color: var(--accent-glow); }\n\n  \/* ---- FEATURE SECTIONS ---- *\/\n  #oceanseye-page .oe-section { padding: 70px 0; }\n  #oceanseye-page .oe-section-alt { background: var(--bg-panel); }\n  #oceanseye-page .oe-section-title {\n    font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 3.6vw, 36px);\n    font-weight: 700; margin: 0 0 10px; max-width: 640px;\n  }\n  #oceanseye-page .oe-section-sub { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 0 8px; }\n  #oceanseye-page .oe-section-sub strong { color: var(--text-primary); }\n  #oceanseye-page .oe-feat-grid {\n    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 34px;\n  }\n  #oceanseye-page .oe-feat-card {\n    position: relative; background: rgba(255,255,255,0.02); border: 1px solid var(--border-glow);\n    border-radius: 12px; padding: 24px 22px 22px; transition: border-color .25s, background .25s;\n    display: block; text-decoration: none; color: inherit; cursor: pointer;\n  }\n  #oceanseye-page .oe-feat-card:hover { border-color: var(--accent-glow); background: rgba(56,189,248,0.045); }\n  #oceanseye-page .oe-feat-num {\n    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;\n    color: var(--accent-glow); letter-spacing: 0.06em; margin-bottom: 10px; opacity: 0.85;\n  }\n  #oceanseye-page .oe-feat-card h4 {\n    font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; margin: 0 0 8px; line-height: 1.3;\n  }\n  #oceanseye-page .oe-feat-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin: 0; }\n\n  \/* ---- FOOTNOTE ---- *\/\n  #oceanseye-page .oe-foot {\n    padding: 36px 0; text-align: center; font-size: 12.5px; color: var(--text-muted);\n    border-top: 1px solid var(--border-glow);\n  }\n\n  @media (max-width: 640px) {\n    #oceanseye-page .oe-hero { padding: 64px 0 48px; }\n    #oceanseye-page .oe-section { padding: 50px 0; }\n  }\n<\/style>\n\n<link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Space+Grotesk:wght@500;600;700&#038;family=Inter:wght@400;500;600&#038;display=swap\" rel=\"stylesheet\">\n\n<!-- \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n     HERO\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 -->\n<section class=\"oe-hero\">\n  <div class=\"oe-sonar\" aria-hidden=\"true\">\n    <div class=\"oe-sonar-ring\"><\/div>\n    <div class=\"oe-sonar-ring\"><\/div>\n    <div class=\"oe-sonar-ring\"><\/div>\n  <\/div>\n  <div class=\"oe-container oe-hero-inner\">\n    <span class=\"oe-eyebrow\">Oceanseye<\/span>\n    <h1 class=\"oe-h1 oe-display\">Two applications.<br>One ocean of data.<\/h1>\n    <p class=\"oe-hero-sub\">Oceanseye is the diving technology arm of <a href=\"http:\/\/divetalking.com\">divetalking.com<\/a> \u2014 a dive logbook and a diving community, built to work as one.<\/p>\n  <\/div>\n<\/section>\n\n<!-- \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n     APPLICATIONS\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 -->\n<section class=\"oe-apps\">\n  <div class=\"oe-container\">\n    <span class=\"oe-eyebrow\">Available Now<\/span>\n    <h2 class=\"oe-section-title oe-display\">The Applications<\/h2>\n    <div class=\"oe-app-grid\">\n\n      <div class=\"oe-app-card\">\n        <svg class=\"oe-app-icon\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <path d=\"M6 32C6 32 10 26 16 26C22 26 22 32 28 32C34 32 34 26 40 26C42 26 42 26 42 26\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\/>\n          <path d=\"M6 22C6 22 10 16 16 16C22 16 22 22 28 22C34 22 34 16 40 16C42 16 42 16 42 16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" opacity=\"0.5\"\/>\n          <circle cx=\"24\" cy=\"10\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n        <\/svg>\n        <h3 class=\"oe-display\">DTDL Dive Log<\/h3>\n        <p>Automatic SAC\/RMV calculations, direct dive computer import, gear and certification tracking, trip planning, and a decompression planner comparing five industry algorithms \u2014 your complete digital logbook.<\/p>\n        <div class=\"oe-btn-row\">\n          <a class=\"oe-btn oe-btn-primary\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dive-logs\/\">Visit DTDL Divelog <span style=\"opacity:.7;font-weight:500;\">(Login Required)<\/span><\/a>\n          <a class=\"oe-btn oe-btn-secondary\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/\">Read Features<\/a>\n        <\/div>\n      <\/div>\n\n      <div class=\"oe-app-card\">\n        <svg class=\"oe-app-icon\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <path d=\"M8 14C8 11.8 9.8 10 12 10H36C38.2 10 40 11.8 40 14V28C40 30.2 38.2 32 36 32H18L10 39V32H12C9.8 32 8 30.2 8 28V14Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"\/>\n          <circle cx=\"17\" cy=\"21\" r=\"1.6\" fill=\"currentColor\"\/>\n          <circle cx=\"24\" cy=\"21\" r=\"1.6\" fill=\"currentColor\"\/>\n          <circle cx=\"31\" cy=\"21\" r=\"1.6\" fill=\"currentColor\"\/>\n        <\/svg>\n        <h3 class=\"oe-display\">Discussion Forum<\/h3>\n        <p>Nested categories, accountable anonymous posting, real moderation tools, and a built-in marketplace disclaimer \u2014 the same community your logbook already connects you to, one login away.<\/p>\n        <div class=\"oe-btn-row\">\n          <a class=\"oe-btn oe-btn-primary\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum\/\">Visit DTDL Forum<\/a>\n          <a class=\"oe-btn oe-btn-secondary\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/\">Read Features<\/a>\n        <\/div>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n     DIVE LOG FEATURES\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 -->\n<section class=\"oe-section oe-section-alt\">\n  <div class=\"oe-container\">\n    <span class=\"oe-eyebrow\">Dive Log<\/span>\n    <h2 class=\"oe-section-title oe-display\">Top 10 Features of DTDL Dive Log<\/h2>\n    <p class=\"oe-section-sub\"><strong>Your complete digital logbook<\/strong> \u2014 built for divers who want more than a paper log.<\/p>\n\n    <div class=\"oe-feat-grid\">\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#gas-calculations\"><div class=\"oe-feat-num\">01<\/div><h4>Effortless Dive Logging with Automatic Gas Calculations<\/h4><p>Log every dive in detail \u2014 or just the essentials with Quick Log. As you fill in depth, time, and tank pressure, your SAC rate and RMV are calculated automatically.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#computer-import\"><div class=\"oe-feat-num\">02<\/div><h4>Import Directly From Your Dive Computer<\/h4><p>Skip the manual entry entirely. Import from Shearwater, Garmin, Suunto, Mares, Oceanic and more via UDDF, DL7, or CSV \u2014 or sync wirelessly. Duplicates are detected automatically.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#trip-planning\"><div class=\"oe-feat-num\">03<\/div><h4>Full Trip &amp; Travel Planning<\/h4><p>Turn a dive holiday into one organized record. Log flights, hotels, insurance, and local transport once per trip, then link any number of dives to it.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#share-dives\"><div class=\"oe-feat-num\">04<\/div><h4>Share Your Dives, Your Way<\/h4><p>Every dive is private by default. Generate a secure link to a single dive or your entire portfolio \u2014 no account required for the viewer, full control over what stays private.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#gear-tracking\"><div class=\"oe-feat-num\">05<\/div><h4>Gear, Regulator &amp; Certification Tracking<\/h4><p>Track every piece of kit \u2014 service dates, VIP and hydro test dates, regulator rigs \u2014 with automatic reminders. Store your certification cards digitally with expiry alerts.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#dives-mapped\"><div class=\"oe-feat-num\">06<\/div><h4>Your Dives, Mapped<\/h4><p>Every site you&#8217;ve logged appears automatically on an interactive world map \u2014 no coordinates to enter by hand.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#dashboard-graphs\"><div class=\"oe-feat-num\">07<\/div><h4>Personal Dashboard, Graphs &amp; Milestone Badges<\/h4><p>Total hours underwater, deepest dive, countries visited, and a 52-week activity heatmap. Build custom charts and unlock milestone badges as your logbook grows.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#dive-planner\"><div class=\"oe-feat-num\">08<\/div><h4>Advanced Dive Planner<\/h4><p>A built-in decompression planner comparing five industry-standard algorithms side by side \u2014 B\u00fchlmann, DSAT\/PADI, RGBM, VPM-B, and DCIEM \u2014 plus gas planning and oxygen exposure checks.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#community\"><div class=\"oe-feat-num\">09<\/div><h4>A Community to Dive Into<\/h4><p>Connect with other divers on the site&#8217;s discussion forum \u2014 ask questions, share gear reviews, swap dive site tips.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-divelog\/#buddy-species-notebook\"><div class=\"oe-feat-num\">10<\/div><h4>Buddy Tracker, Species Life List &amp; Site Notebook<\/h4><p>See your shared history with every dive buddy, build a running life list of every species encountered, and keep private notes on every site you return to.<\/p><\/a>\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n     FORUM FEATURES\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 -->\n<section class=\"oe-section\">\n  <div class=\"oe-container\">\n    <span class=\"oe-eyebrow\">Discussion Forum<\/span>\n    <h2 class=\"oe-section-title oe-display\">Top 10 Features of the DTDL Discussion Forum<\/h2>\n    <p class=\"oe-section-sub\">A place to talk diving with <strong>the same community you already share a logbook with.<\/strong><\/p>\n\n    <div class=\"oe-feat-grid\">\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#categories\"><div class=\"oe-feat-num\">01<\/div><h4>Organized Categories, Nested However Deep You Need<\/h4><p>Browse discussions by topic with subcategories nested underneath. Everything starts collapsed, so the page stays clean no matter how many topics exist.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#breadcrumbs\"><div class=\"oe-feat-num\">02<\/div><h4>Never Lose Your Place<\/h4><p>A full breadcrumb trail always shows exactly where you are, and every step is clickable \u2014 jump straight back to any level instead of starting over.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#anonymous-posting\"><div class=\"oe-feat-num\">03<\/div><h4>Post Anonymously When You Want To<\/h4><p>Anonymous posts show as &#8220;Anonymous Diver&#8221; with a number that resets in every thread \u2014 enough to follow a conversation, never enough to be tracked across the forum.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#edit-delete\"><div class=\"oe-feat-num\">04<\/div><h4>Edit Anytime, Delete Safely<\/h4><p>Fix a typo or rewrite a post whenever you like. A post can&#8217;t be removed once someone has already replied to it, so conversations never end up with gaps.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#photos\"><div class=\"oe-feat-num\">05<\/div><h4>Photos on Every Post<\/h4><p>Attach images directly to a thread or reply \u2014 show off your latest gear, a dive site photo, or exactly what&#8217;s wrong with that regulator.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#search\"><div class=\"oe-feat-num\">06<\/div><h4>Search That Actually Finds Things<\/h4><p>One search box covers every thread title and every post at once, split clearly between matching threads and matching messages.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#mentions\"><div class=\"oe-feat-num\">07<\/div><h4>@Mentions That Get Noticed<\/h4><p>Every member has a handle for tagging them directly in a post. Mention someone and \u2014 if they&#8217;ve opted in \u2014 they get notified.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#notifications\"><div class=\"oe-feat-num\">08<\/div><h4>Notifications You Control<\/h4><p>Choose independently whether you&#8217;re notified about replies to threads you&#8217;re part of, and whether you&#8217;re notified when someone @mentions you.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#reporting\"><div class=\"oe-feat-num\">09<\/div><h4>A Real Reporting System<\/h4><p>Every post can be reported with a required reason. Reports capture the post exactly as it looked at that moment, so a later edit can&#8217;t change what gets reviewed.<\/p><\/a>\n      <a class=\"oe-feat-card\" href=\"https:\/\/www.divetalking.com\/oceanseye\/dtdl-forum-features\/#marketplace-safety\"><div class=\"oe-feat-num\">10<\/div><h4>Built for Buying, Selling &amp; Trading Gear \u2014 Safely<\/h4><p>A clear disclaimer explains the site&#8217;s role before anyone dives into for-sale posts: a place to connect, not a party to any transaction.<\/p><\/a>\n    <\/div>\n  <\/div>\n<\/section>\n\n<div class=\"oe-foot\">&copy; 2026 Oceanseye<\/div>\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Oceanseye Two applications.One ocean of data. Oceanseye is the diving technology arm of divetalking.com \u2014 a dive logbook and a diving community, built to work as one. Available Now The Applications DTDL Dive Log Automatic SAC\/RMV calculations, direct dive computer import, gear and certification tracking, trip planning, and a decompression planner comparing five industry algorithms &#8230; <a title=\"\" class=\"read-more\" href=\"https:\/\/www.divetalking.com\/oceanseye\/\" aria-label=\"Read more about \">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-17","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/pages\/17","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/comments?post=17"}],"version-history":[{"count":8,"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/pages\/17\/revisions"}],"predecessor-version":[{"id":173,"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/pages\/17\/revisions\/173"}],"wp:attachment":[{"href":"https:\/\/www.divetalking.com\/oceanseye\/wp-json\/wp\/v2\/media?parent=17"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}