diff --git a/content/submitting_jobs/_index.md b/content/submitting_jobs/_index.md
index 503bc8c8e2843e9b402c6c080f77d5dd7d7eeb7b..10d154548898b3b73aedb90d275a10d5699b35a9 100644
--- a/content/submitting_jobs/_index.md
+++ b/content/submitting_jobs/_index.md
@@ -43,7 +43,7 @@ $ pwd
 {{< /highlight >}}
 {{% /panel %}}
 
-Review how /work differs from /home [here.]({{< relref "/guides/handling_data/_index.md" >}})
+Review how /work differs from /home [here.]({{< relref "/handling_data/_index.md" >}})
 
 ### Creating a SLURM Submit File
 
@@ -88,7 +88,7 @@ sleep 60
 - **partition**  
   The partition the job should run in.  Partitions determine the job's
   priority and on what nodes the partition can run on.  See the
-  [Partitions]({{< relref "/guides/submitting_jobs/partitions/_index.md" >}}) page for a list of possible partitions.
+  [Partitions]({{< relref "/submitting_jobs/partitions/_index.md" >}}) page for a list of possible partitions.
 - **error**  
   Location of the stderr will be written for the job.  `[groupname]`
   and `[username]` should be replaced your group name and username.
@@ -142,7 +142,7 @@ $ squeue -u <username>
 {{< /highlight >}}
 
 Additionally, if you want to see the status of a specific partition, for
-example if you are part of a [partition]({{< relref "/guides/submitting_jobs/partitions/_index.md" >}}),
+example if you are part of a [partition]({{< relref "/submitting_jobs/partitions/_index.md" >}}),
 you can use the `-p` option to `squeue`:
 
 {{< highlight batch >}}