diff --git a/website/content/computation_graph.md b/website/content/computation_graph.md
new file mode 100644
index 0000000000000000000000000000000000000000..0f955b19ceea85b6bb1455477a75aee37b5b00a4
--- /dev/null
+++ b/website/content/computation_graph.md
@@ -0,0 +1,15 @@
+Title: A new and flexible way to compute
+Date: 2017-02-01
+Authors: Brendan
+Category: Highlights
+thumbnail: "/images/computation_graph.png"
+
+The controls team wants to start tuning the controller on the quadcopter, they also want to have the modify the controller in order to better characterize each part. Currently, there is no way to do that except re-write the code on the quad, which bleeds into their development cycle. David took the challenge to solve this issue, and developed the idea of a computation graph.
+
+<a href="/images/computation_graph.png">
+<figure>
+<img src="/images/computation_graph.png">
+</figure>
+</a>
+
+The idea is a typical graph data structure, specifically a directed acyclic multigraph with weighted edges. However, when normally the nodes in a graph represent some data, the nodes in the computation represent functions, and each edge represents a value that gets passed from the "output" of one node to the "input" of another node. Computing the whole graph is simply a matter of performing a depth-first-search algorithm, where the "inputs" of a node represent the node's children.
\ No newline at end of file
diff --git a/website/content/finding_discrepencies.md b/website/content/finding_discrepencies.md
new file mode 100644
index 0000000000000000000000000000000000000000..1e93eed9341080194281c38f97ee1075767f28ac
--- /dev/null
+++ b/website/content/finding_discrepencies.md
@@ -0,0 +1,21 @@
+Title: Tracking Down Discrepancies
+Date: 2017-03-28
+Authors: Brendan
+Category: Highlights
+thumbnail: "/images/discrepancies_bad.png"
+
+David, Andy, and Tara have been trying to track down discrepancies between the quadcopter controller implementation and the Simulink model. With each discovered discrepancy, the model keeps getting better. Here is one example of where the quad code and model were performing the calculation for the complementary filter differently.
+
+<a href="/images/discrepancies_bad.png">
+<figure>
+<img src="/images/discrepancies_bad.png">
+</figure>
+</a>
+
+This is looking at the output of a simulation in the Simulink model, overlayed with actual logged data from a flight test of the quadcopter. After resolving the discrepency, the model predicts the behavior much more closely.
+
+<a href="/images/discrepancies_good.png">
+<figure>
+<img src="/images/discrepancies_good.png">
+</figure>
+</a>
\ No newline at end of file
diff --git a/website/content/height_stabilization.md b/website/content/height_stabilization.md
deleted file mode 100644
index dc28ec032ab293bcd7577f5bd2f72b27f1d88da3..0000000000000000000000000000000000000000
--- a/website/content/height_stabilization.md
+++ /dev/null
@@ -1,13 +0,0 @@
-Title: Height Stabilization (movie)
-Date: 2016-12-04
-Authors: Brendan
-Category: Highlights
-image:
-
-The following test flight demonstrates altitude stabilization. Once the pilot puts the quadcopter into autonomous mode, the quadcopter uses its internal control algorithm to maintain its altitude. The pilot still must provide x and y-axis stabilization through the remote control.
-
-<figure>
-<video controls>
-<source src="/videos/height_stabilization.mp4">
-</video>
-</figure>
diff --git a/website/content/images/computation_graph.png b/website/content/images/computation_graph.png
new file mode 100644
index 0000000000000000000000000000000000000000..79f6ad79766f226b7101cd6e9e5d0bb62d7ee071
Binary files /dev/null and b/website/content/images/computation_graph.png differ
diff --git a/website/content/images/discrepancies_bad.png b/website/content/images/discrepancies_bad.png
new file mode 100644
index 0000000000000000000000000000000000000000..b549628ecbaa5e329a677365cc632027a95c274a
Binary files /dev/null and b/website/content/images/discrepancies_bad.png differ
diff --git a/website/content/images/discrepancies_good.png b/website/content/images/discrepancies_good.png
new file mode 100644
index 0000000000000000000000000000000000000000..4506945f7c5dde49542e1349d675f0db28538389
Binary files /dev/null and b/website/content/images/discrepancies_good.png differ
diff --git a/website/content/images/model_pitch_rate.png b/website/content/images/model_pitch_rate.png
new file mode 100644
index 0000000000000000000000000000000000000000..623f0214a3e4402a6e0b559b1881f9a5d4ae6c66
Binary files /dev/null and b/website/content/images/model_pitch_rate.png differ
diff --git a/website/content/model_pitch_rate.md b/website/content/model_pitch_rate.md
new file mode 100644
index 0000000000000000000000000000000000000000..5b8c8a5fa7562d3e68f2a97abfa57146d79f87f0
--- /dev/null
+++ b/website/content/model_pitch_rate.md
@@ -0,0 +1,15 @@
+Title: Simulink Model Update
+Date: 2017-02-10
+Authors: Brendan
+Category: Highlights
+thumbnail: "/images/model_pitch_rate.png"
+
+Andy and Tara have been working to flesh out the Simulink model of our quadcopter. They have obtained the measurements they need to physically describe the model, now they are finishing up the Simulink model. Here is an example output of the pitch position controller.
+
+<a href="/images/model_pitch_rate.png">
+<figure>
+<img src="/images/model_pitch_rate.png">
+</figure>
+</a>
+
+This controller represents one of many controllers that we consider to be "inner loop" controllers. Right now, the inner loop controllers in the model are stable, like this pitch position controller. The controls team is now working through PID constants to determine a stable controller for the outer loop controllers.
\ No newline at end of file
diff --git a/website/content/pages/about.md b/website/content/pages/about.md
index 3059f09b11e2b4a8d5a26f0e1d8a2995b33ca17e..156c09c8445c343db83cd355c1cdf2d996bd8775 100644
--- a/website/content/pages/about.md
+++ b/website/content/pages/about.md
@@ -17,8 +17,7 @@ embedded systems. This year, our team is responsible for advancing the
 modular structure the platform, developing a controls model, and
 improving the autonomous flight capabilities of the quadcopter.
 
-For additional information regarding the project, please visit the
-[supplemental wiki
-page][1].
+Team members should consult the [Gitlab project page][1] for technical
+documentation and instructions.
 
-[1]: https://wikis.ece.iastate.edu/microcart-senior-design/index.php/2016-2017_Main_Page
+[1]: https://git.ece.iastate.edu/danc/MicroCART_17-18
diff --git a/website/themes/notmyidea/templates/base.html b/website/themes/notmyidea/templates/base.html
index 455bcb40aee9fc6ac6c167ff43d142bed100ac4f..c4739eed4c5781e4c474fba1537a4a3e3eae71d5 100644
--- a/website/themes/notmyidea/templates/base.html
+++ b/website/themes/notmyidea/templates/base.html
@@ -36,7 +36,6 @@
                     <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
                 {% endfor %}
                 {% endif %}
-                    <li><a href="https://wikis.ece.iastate.edu/microcart-senior-design/index.php/2016-2017_Main_Page">Wiki</a></li>
                 </ul></nav>
         </header><!-- /#banner -->
         {% block content %}