diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## Unreleased
+
+#### Fixed
+
+- Match the newest `org-mode`.
+
 ## 1.6.0 (2021-04-05)
 
 #### Added
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Colin Woodbury (c) 2020
+Copyright Colin Woodbury (c) 2020 - 2021
 
 All rights reserved.
 
diff --git a/lib/Data/Org/Lucid.hs b/lib/Data/Org/Lucid.hs
--- a/lib/Data/Org/Lucid.hs
+++ b/lib/Data/Org/Lucid.hs
@@ -120,7 +120,7 @@
   | otherwise = ul_ $ traverse_ f ss
   where
     f :: Section -> Html ()
-    f (Section ws _ od) = do
+    f (Section _ _ ws _ _ _ _ _ _ od) = do
       li_ $ a_ [href_ $ "#" <> tocLabel ws] $ paragraphHTML os ws
       toc' os t (succ depth) od
 
@@ -132,8 +132,9 @@
   traverse_ (blockHTML os) bs
   traverse_ (sectionHTML os depth) ss
 
+-- | Section timestamps and properties are ignored.
 sectionHTML :: OrgStyle -> Int -> Section -> Html ()
-sectionHTML os depth (Section ws _ od) = sectionStyling os depth theHead theBody
+sectionHTML os depth (Section _ _ ws _ _ _ _ _ _ od) = sectionStyling os depth theHead theBody
   where
     theHead :: Html ()
     theHead = heading [id_ $ tocLabel ws] $ paragraphHTML os ws
@@ -235,6 +236,5 @@
   Strike t        -> span_ [style_ "text-decoration: line-through;"] $ toHtml t
   Link (URL u) mt -> a_ [href_ u] $ maybe "" toHtml mt
   Image (URL u)   -> figure_ $ img_ [src_ u]
-  Tags ts         -> toHtml $ ":" <> T.intercalate ":" (NEL.toList ts) <> ":"
   Punct c         -> toHtml $ T.singleton c
   Plain t         -> toHtml t
diff --git a/org-mode-lucid.cabal b/org-mode-lucid.cabal
--- a/org-mode-lucid.cabal
+++ b/org-mode-lucid.cabal
@@ -1,13 +1,13 @@
 cabal-version:      2.2
 name:               org-mode-lucid
-version:            1.6.0
+version:            1.6.1
 synopsis:           Lucid integration for org-mode.
 description:        Lucid integration for org-mode.
 category:           Web
 homepage:           https://github.com/fosskers/org-mode
 author:             Colin Woodbury
 maintainer:         colin@fosskers.ca
-copyright:          2020 Colin Woodbury
+copyright:          2020 - 2021 Colin Woodbury
 license:            BSD-3-Clause
 license-file:       LICENSE
 build-type:         Simple
@@ -28,7 +28,7 @@
     , containers  >=0.6
     , hashable    >=1.2  && <1.4
     , lucid       ^>=2.9
-    , org-mode    ^>=1.1
+    , org-mode    ^>=2.0
     , text
 
 library
