SLING-6203 - Create a Maven archetype for content packages

Add a note regarding the sling-content-package-archetype.
diff --git a/src/main/jbake/content/documentation/development/content-packages.md b/src/main/jbake/content/documentation/development/content-packages.md
index d26c754..2ead7c6 100644
--- a/src/main/jbake/content/documentation/development/content-packages.md
+++ b/src/main/jbake/content/documentation/development/content-packages.md
@@ -34,12 +34,20 @@
 
 ### Maven projects
 
-The [Sling Project Archetype](https://github.com/apache/sling-project-archetype) creates a multi-module project that includes content packages as part of its output. To use it, run the following command
+There are two options for getting started with content package projects via Maven.
+
+The first one is the [Sling Project Archetype](https://github.com/apache/sling-project-archetype), which creates a multi-module project that includes content packages as part of its output. To use it, run the following command
 
     $ mvn archetype:generate -Dfilter=org.apache.sling:sling-project-archetype
 
 then select the latest version of the archetype and fill in the required information.
 
+The second one is [Content-Package Archetype](https://github.com/apache/sling-content-package-archetype) , which creates a single content package. Similar to the `sling-project-archetype`, generating a project only requires:
+
+    $ mvn archetype:generate -Dfilter=org.apache.sling:sling-content-archetype
+
+Using one archetype or the other is largely a matter of preference. The `sling-project-archetype` takes a more batteries-included approach, while the `sling-content-archetype` creates only a minimal content package.
+
 ### Node projects
 
 An example project using the Sling Packager can be found at [peregrine-cms/simple-sling-vue-example](https://github.com/peregrine-cms/simple-sling-vue-example) on GitHub.
@@ -100,4 +108,4 @@
       "content-packages:ARTIFACTS|true": [
         "org.apache.sling.sample:org.apache.sling.sample001:zip:1.0-SNAPSHOT"
       ]
-    }
\ No newline at end of file
+    }