diff --git a/.gitignore b/.gitignore
old mode 100644
new mode 100755
index f40fbd8..9f35c3a
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ _site
.jekyll-cache
.jekyll-metadata
vendor
+*.lock
diff --git a/404.html b/404.html
old mode 100644
new mode 100755
diff --git a/Gemfile b/Gemfile
old mode 100644
new mode 100755
diff --git a/_alice_index/index.php b/_alice_index/index.php
new file mode 100755
index 0000000..626f546
--- /dev/null
+++ b/_alice_index/index.php
@@ -0,0 +1,21 @@
+";
+
+foreach ($files as $file) {
+ // Remove a extensão .txt do nome do arquivo
+ $filenameWithoutExtension = basename($file, '.txt');
+
+ // Cria o link com o nome do arquivo na query string
+ $link = "list_files.php?filetype=" . urlencode($filenameWithoutExtension);
+
+ // Cria o item da lista com o link
+ echo "
@@ -9,6 +9,7 @@ permalink: /
";
@@ -18,7 +19,7 @@ foreach ($files as $file) {
$filenameWithoutExtension = basename($file, '.txt');
// Cria o link com o nome do arquivo na query string
- $link = "/alice_index/file_index.php?filetype=" . urlencode($filenameWithoutExtension);
+ $link = "{{ site.baseurl }}/file_index.php?filetype=" . urlencode($filenameWithoutExtension);
// Cria o item da lista com o link
echo "
$filenameWithoutExtension";
diff --git a/pages/mmp.html b/pages/mmp.html
new file mode 100755
index 0000000..2c6cb08
--- /dev/null
+++ b/pages/mmp.html
@@ -0,0 +1,15 @@
+---
+layout: generic
+permalink: /mmp/
+---
+
+
+{% for item in site.data.mmp %}
+{% capture name %}{{item.name}}{% endcapture %}
+{% capture user %}{{item.user}}{% endcapture %}
+{% capture url %}{{item.url}}{% endcapture %}
+{% capture directory %}{{item.directory}}{% endcapture %}
+{% capture group %}{{item.group}}{% endcapture %}
+{% include card.html name=name user=user url=url directory=directory group=group %}
+{% endfor %}
+
diff --git a/pages/pd.html b/pages/pd.html
new file mode 100755
index 0000000..dd0094d
--- /dev/null
+++ b/pages/pd.html
@@ -0,0 +1,29 @@
+---
+layout: generic
+permalink: /pd/
+---
+
+
+{% for item in site.data.pd %}
+{% capture name %}{{item.name}}{% endcapture %}
+{% capture user %}{{item.user}}{% endcapture %}
+{% capture url %}{{item.url}}{% endcapture %}
+{% capture directory %}{{item.directory}}{% endcapture %}
+{% capture group %}{{item.group}}{% endcapture %}
+{% include card.html name=name user=user url=url directory=directory group=group %}
+{% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+