diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 00000000000..7f1a3df9bd7 --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,54 @@ +name: Build and Deploy Jekyll + +on: + push: + branches: + - gh-pages + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.2' + bundler-cache: true + + - name: Build Jekyll + run: bundle exec jekyll build + + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./_site + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + runs-on: ubuntu-latest + needs: build + + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/Gemfile.lock b/Gemfile.lock index 5d0732b30e2..a0a06782508 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,6 +18,7 @@ GEM ffi (1.15.5) forwardable-extended (2.6.0) google-protobuf (3.23.4-arm64-darwin) + google-protobuf (3.23.4-x64-mingw-ucrt) google-protobuf (3.23.4-x86_64-linux) http_parser.rb (0.8.0) i18n (1.14.1) @@ -73,6 +74,8 @@ GEM safe_yaml (1.0.5) sass-embedded (1.64.2-arm64-darwin) google-protobuf (~> 3.23) + sass-embedded (1.64.2-x64-mingw-ucrt) + google-protobuf (~> 3.23) sass-embedded (1.64.2-x86_64-linux-gnu) google-protobuf (~> 3.23) sawyer (0.9.2) @@ -86,6 +89,7 @@ GEM PLATFORMS arm64-darwin-22 + x64-mingw-ucrt x86_64-linux DEPENDENCIES diff --git a/_config.yml b/_config.yml index 76d4eb9d206..11289d6e435 100644 --- a/_config.yml +++ b/_config.yml @@ -1,36 +1,26 @@ -# ASCII-Font › http://patorjk.com/software/taag/#p=display&f=Slant&t=Phlow -# -# _____ _ __ _____ __ __ _ -# / ___/(_) /____ / ___/___ / /_/ /_(_)___ ____ ______ -# \__ \/ / __/ _ \ \__ \/ _ \/ __/ __/ / __ \/ __ `/ ___/ -# ___/ / / /_/ __/ ___/ / __/ /_/ /_/ / / / / /_/ (__ ) -# /____/_/\__/\___/ /____/\___/\__/\__/_/_/ /_/\__, /____/ -# /____/ -# # Title of your website -title: 'Feeling Responsive' +title: 'III Simpósio de Automação e Sistemas' # The slogan describes your website and is used on homepage in and other important places -slogan: 'A Flexible Theme for Jekyll' +slogan: 'III SAS — UFRN' # The description is used on homepage and in the footer to quickly describe your website. Use a maximum of 150 characters for SEO-purposes. -description: '»Feeling Responsive« is a responsive theme for Jekyll based on the fabulous foundation framework with beautiful typography and a bright color palette.' +description: 'III Simpósio de Automação e Sistemas da Universidade Federal do Rio Grande do Norte.' -# The credits show up in the includes/_footer.html – It would be nice of you to leave a link to Phlow or Feeling Responsive as a thank you :) -credits: '<p>Created with ♥ by <a href="http://phlow.de/">Phlow</a> with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> based on <a href="http://phlow.github.io/feeling-responsive/">Feeling Responsive</a>.</p>' +# The credits show up in the includes/_footer.html +credits: '<p>III Simpósio de Automação e Sistemas · UFRN</p>' # Main author of the website -# See > authors.yml -author: phlow +author: 'III Simpósio de Automação e Sistemas' # This URL is the main address for absolute links. Don't include a slash at the end. -# -url: 'https://phlow.github.io' -baseurl: '/feeling-responsive' +url: 'https://laizesuelia.github.io' +baseurl: '/iii-sas' # This is for the editing function in _/includes/improve_content # Leave it empty if your site is not on GitHub/GitHub Pages -improve_content: https://github.com/Phlow/feeling-responsive/edit/gh-pages +# improve_content: https://github.com/Phlow/feeling-responsive/edit/gh-pages +improve_content: https://github.com/laizesuelia/iii-sas/edit/dev # This URL points directly to the images directory making # things easier to link to images in posts and templates. It needs a slash at the end. @@ -38,11 +28,12 @@ improve_content: https://github.com/Phlow/feeling-responsive/edit/gh-pages # Example: <img src="{{ site.urlimg }}{{ post.image.title }}" /> # Markdown-Example for posts ![Image Text]({{ site.urlimg }}image.jpg) # -urlimg: 'https://phlow.github.io/feeling-responsive/images/' +urlimg: 'https://laizesuelia.github.io/iii-sas/images/' # Logo size is 600x80 pixels -logo: "logo.png" + +logo: logo-sas.png # Plugins plugins: @@ -80,7 +71,7 @@ exclude: # The language setting is used in /includes/header.html for html-settings -language: 'en' +language: 'pt-BR' # Used › default.html front-matter and compress.html diff --git a/_data/navigation.yml b/_data/navigation.yml index 749b176677d..e2368dc5977 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -1,75 +1,19 @@ -- title: Start +- title: "Início" url: "/" side: left -- title: Getting Started - url: "/getting-started/" +- title: "Sobre" + url: "/sobre/" side: left -- title: "Templates" - url: "/design/" +- title: "Programação" + url: "/programacao/" side: left - dropdown: - - title: "Grid & Colors" - url: "/design/grid/" - - title: "Typography" - url: "/design/typography/typography/" - - title: "Page/Post" - url: "/design/page/" - - title: "Post-Left-Sidebar" - url: "/design/post-left-sidebar/" - - title: "Post-Right-Sidebar" - url: "/design/post-right-sidebar/" - - title: "Page Full-Width" - url: "/design/page-fullwidth/" - - title: "Blog-Page" - url: "/blog/" - - title: "Video" - url: "/design/video/" - - title: "Gallery" - url: "/design/gallery/" - - title: "Portfolio" - url: "/design/portfolio/" -- title: "Header Styles" - url: "/headers/" +- title: "Inscrições" + url: "/inscricoes/" side: left - dropdown: - - title: "Header with Full-Width-Image" - url: "/design/header-full-width-image/" - - title: "Header with Image and Pattern" - url: "/design/header-image-pattern/" - - title: "Header with image and color" - url: "/design/header-image-color/" - - title: "Header Only With Logo" - url: "/design/header-logo-only/" - - title: "Header With Text" - url: "/design/header-with-text/" - - title: "No Header" - url: "/design/no-header/" - - title: "No Header but Image" - url: "/design/no-header-but-image/" -- title: Documentation - url: "/documentation/" - side: left - dropdown: - - title: "Changelog" - url: "/changelog/" - - title: "Roadmap" - url: "/roadmap/" - -- title: Blog - url: "/blog/" - side: left - dropdown: - - title: "Blog Archive" - url: "/blog/archive/" - -- title: "Search" - url: "/search/" - side: right - -- title: "Contact" +- title: "Contato" url: "/contact/" - side: right + side: right \ No newline at end of file diff --git a/_includes/_footer.html b/_includes/_footer.html index c5676881eff..f8708f1b8aa 100755 --- a/_includes/_footer.html +++ b/_includes/_footer.html @@ -1,75 +1,41 @@ - <div id="up-to-top" class="row"> - <div class="small-12 columns" style="text-align: right;"> - <a class="iconfont" href="#top-of-page"></a> - </div><!-- /.small-12.columns --> - </div><!-- /.row --> - - - <footer id="footer-content" class="bg-grau"> - <div id="footer"> - <div class="row"> - <div class="medium-6 large-5 columns"> - <h5 class="shadow-black">{{ site.data.language.info_website }}</h5> - - <p class="shadow-black"> - {{ site.description }} - <a href="{{ site.url }}{{ site.baseurl }}/info/">{{ site.data.language.more }}</a> - </p> - </div><!-- /.large-6.columns --> - - - <div class="small-6 medium-3 large-3 large-offset-1 columns"> - {% for service_item in site.data.services %} - {% if forloop.first == true %} - <h5 class="shadow-black">{{ service_item.menu_name }}</h5> - {% endif %} - {% endfor %} - - <ul class="no-bullet shadow-black"> - {% for service_item in site.data.services %} - {% if service_item.url contains 'http' %}{% assign domain = '' %}{% else %}{% capture domain %}{{ site.url }}{{ site.baseurl }}{% endcapture %}{% endif %} - <li {% if service_item.class %}class="{{ service_item.class }}" {% endif %}> - <a href="{{ domain }}{{ service_item.url }}" {% if service_item.url contains 'http' %}target="_blank" {% endif %} title="{{ service_item.title }}">{{ service_item.name }}</a> - </li> - {% endfor %} - </ul> - </div><!-- /.large-4.columns --> - - - <div class="small-6 medium-3 large-3 columns"> - {% for network_item in site.data.network %} - {% if forloop.first == true %} - <h5 class="shadow-black">{{ network_item.menu_name }}</h5> - {% endif %} - {% endfor %} - - <ul class="no-bullet shadow-black"> - {% for network_item in site.data.network %} - {% if network_item.url contains 'http' %}{% assign domain = '' %}{% else %}{% capture domain %}{{ site.url }}{{ site.baseurl }}{% endcapture %}{% endif %} - <li {% if network_item.class %}class="{{ network_item.class }}" {% endif %}> - <a href="{{ domain }}{{ network_item.url }}" {% if network_item.url contains 'http' %}target="_blank" {% endif %} title="{{ network_item.title }}">{{ network_item.name }}</a> - </li> - {% endfor %} - </ul> - </div><!-- /.large-3.columns --> - </div><!-- /.row --> - - </div><!-- /#footer --> - - - <div id="subfooter"> - <nav class="row"> - <section id="subfooter-left" class="small-12 medium-6 columns credits"> - {{ site.credits }} - </section> - - <section id="subfooter-right" class="small-12 medium-6 columns"> - <ul class="inline-list social-icons"> - {% for social_item in site.data.socialmedia %} - <li><a href="{{ social_item.url }}" target="_blank" class="{{ social_item.class }}" title="{{ social_item.title }}"></a></li> - {% endfor %} - </ul> - </section> - </nav> - </div><!-- /#subfooter --> - </footer> +<div id="up-to-top" class="row"> + <div class="small-12 columns" style="text-align: right;"> + <a class="iconfont" href="#top-of-page"></a> + </div> +</div> + +<footer id="footer-content" class="bg-grau"> + <div id="footer"> + <div class="row"> + + <div class="small-12 medium-6 columns"> + <h5 class="shadow-black">III Simpósio de Automação e Sistemas</h5> + + <p class="shadow-black"> + Universidade Federal do Rio Grande do Norte — UFRN. + </p> + </div> + + <div class="small-12 medium-6 columns"> + <h5 class="shadow-black">Navegação</h5> + + <ul class="no-bullet shadow-black"> + <li><a href="{{ site.baseurl }}/">Início</a></li> + <li><a href="{{ site.baseurl }}/sobre/">Sobre</a></li> + <li><a href="{{ site.baseurl }}/programacao/">Programação</a></li> + <li><a href="{{ site.baseurl }}/inscricoes/">Inscrições</a></li> + <li><a href="{{ site.baseurl }}/contact/">Contato</a></li> + </ul> + </div> + + </div> + </div> + + <div id="subfooter"> + <nav class="row"> + <section id="subfooter-left" class="small-12 columns credits"> + III Simpósio de Automação e Sistemas · UFRN + </section> + </nav> + </div> +</footer> \ No newline at end of file diff --git a/_includes/_masthead.html b/_includes/_masthead.html index 18556227b3f..8ac9d70494d 100644 --- a/_includes/_masthead.html +++ b/_includes/_masthead.html @@ -100,10 +100,6 @@ </div> {% endif %} - - - - {% elsif page.header.background-color %} <div id="masthead-with-background-color" style="background: {{ page.header.background-color }};"> diff --git a/_layouts/frontpage.html b/_layouts/frontpage.html index b23abb39fbb..a2ff64c13e4 100644 --- a/_layouts/frontpage.html +++ b/_layouts/frontpage.html @@ -8,13 +8,6 @@ </div><!-- /.medium-4.columns --> </div><!-- /.row --> </div><!-- /#header-home --> - - -{% comment %} -* -* First check, if widget is empty or not by checking if there is a title -* -{% endcomment %} <div class="row t60"> {% if page.widget1.image or page.widget1.video or page.widget1.title %} {% include _frontpage-widget.html widget=page.widget1 %} @@ -29,8 +22,6 @@ {% endif %} </div><!-- /.row --> - - {% comment %} * * First check, if there is a call for action-button @@ -42,70 +33,12 @@ {% capture url %}{{ site.url }}{{ site.baseurl }}{% endcapture %} {% endif %} {% if page.callforaction %} - <div class="row t60 b60"> - <div class="small-12 text-center columns"> - <a class="button large radius {{ page.callforaction.style }}" href="{{ url }}{{ page.callforaction.url }}"{% if page.callforaction.url contains 'http' %} target="_blank" {% endif %}>{{ page.callforaction.text }}</a> - </div><!-- /.small-12.columns --> - </div><!-- /.row --> + <div class="row t60 b60"> + <div class="small-12 text-center columns"> + <a class="button large radius {{ page.callforaction.style }}" href="{{ url }}{{ page.callforaction.url }}"{% if page.callforaction.url contains 'http' %} target="_blank" {% endif %}>{{ page.callforaction.text }}</a> + </div><!-- /.small-12.columns --> + </div><!-- /.row --> {% endif %} - - - -{% comment %} -* -* First check, if there are any posts at all -* -{% endcomment %} - -{% unless site.posts == empty %} - <div class="row t30 b20 homepage"> - <div class="small-12 columns"> - {% for post in site.posts limit:1 %} - {% if post.image.homepage %} - <p> - <a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="{{ post.title | escape_once }}"><img width="970" src="{{ site.urlimg }}{{ post.image.homepage }}" alt="{{ page.title | escape_once }}"></a> - </p> - - {% if post.image.caption_url and post.image.caption %} - <p class="text-right caption"> - <a href="{{ post.image.caption_url }}">{{ post.image.caption }}</a> - </p> - {% endif %} - {% else post.image.homepage == NULL %} - <h2>{{ site.data.language.new_blog_entries }}</h2> - {% endif %} - {% endfor %} - </div><!-- /.small-12.columns --> - </div><!-- /.row --> - - - <div class="row"> - <div class="medium-6 columns"> - {% for post in site.posts limit:1 %} - {% if post.subheadline %}<p class="subheadline">{{ post.subheadline }}</p>{% endif %} - <h2><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2> - <p> - {% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% else post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %} - <a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="Read {{ post.title | escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a> - </p> - {% endfor %} - </div><!-- /.medium-5.columns --> - - - <div class="medium-6 columns"> - <p><strong>{{ site.data.language.more_articles }}</strong></p> - {% include list-posts entries='3' offset='1' %} - </div><!-- /.medium-7.columns --> - </div><!-- /.row --> -{% endunless %} - - -{% comment %} -* -* Finally, if there is content, spit it out. -* -{% endcomment %} - <div class="row"> {{ content }} -</div><!-- /.row --> +</div><!-- /.row --> \ No newline at end of file diff --git a/_sass/_01_settings_colors.scss b/_sass/_01_settings_colors.scss index dcedd19f183..9daae1352c6 100644 --- a/_sass/_01_settings_colors.scss +++ b/_sass/_01_settings_colors.scss @@ -31,7 +31,7 @@ $ci-2 : #45B29D; // turquoise $ci-3 : #EFC94C; // yellow $ci-4 : #E27A3F; // orange $ci-5 : #DF4949; // red -$ci-6 : #A1D044; // green +$ci-6 : #005B9A; // Azul do III SAS diff --git a/assets/css/styles_feeling_responsive.scss b/assets/css/styles_feeling_responsive.scss index fe7521b7826..6045f16ba9a 100755 --- a/assets/css/styles_feeling_responsive.scss +++ b/assets/css/styles_feeling_responsive.scss @@ -47,3 +47,7 @@ sitemap: {% endif %} @import "11_syntax-highlighting.scss"; + +#logo { + display: none !important; +} \ No newline at end of file diff --git a/assets/img/logo-sas-lg-blue.png b/assets/img/logo-sas-lg-blue.png new file mode 100644 index 00000000000..02f491546b4 Binary files /dev/null and b/assets/img/logo-sas-lg-blue.png differ diff --git a/assets/img/logo-sas.png b/assets/img/logo-sas.png new file mode 100644 index 00000000000..d9834cbe603 Binary files /dev/null and b/assets/img/logo-sas.png differ diff --git a/images/descarte/Logo_SAS.jpg b/images/descarte/Logo_SAS.jpg new file mode 100644 index 00000000000..ad33d3bc25e Binary files /dev/null and b/images/descarte/Logo_SAS.jpg differ diff --git a/images/descarte/Logo_SAS.png b/images/descarte/Logo_SAS.png new file mode 100644 index 00000000000..37065af7bc2 Binary files /dev/null and b/images/descarte/Logo_SAS.png differ diff --git a/images/gallery-example-1-thumb.jpg b/images/descarte/gallery-example-1-thumb.jpg similarity index 100% rename from images/gallery-example-1-thumb.jpg rename to images/descarte/gallery-example-1-thumb.jpg diff --git a/images/gallery-example-1.jpg b/images/descarte/gallery-example-1.jpg similarity index 100% rename from images/gallery-example-1.jpg rename to images/descarte/gallery-example-1.jpg diff --git a/images/gallery-example-2-thumb.jpg b/images/descarte/gallery-example-2-thumb.jpg similarity index 100% rename from images/gallery-example-2-thumb.jpg rename to images/descarte/gallery-example-2-thumb.jpg diff --git a/images/gallery-example-2.jpg b/images/descarte/gallery-example-2.jpg similarity index 100% rename from images/gallery-example-2.jpg rename to images/descarte/gallery-example-2.jpg diff --git a/images/gallery-example-3-thumb.jpg b/images/descarte/gallery-example-3-thumb.jpg similarity index 100% rename from images/gallery-example-3-thumb.jpg rename to images/descarte/gallery-example-3-thumb.jpg diff --git a/images/gallery-example-3.jpg b/images/descarte/gallery-example-3.jpg similarity index 100% rename from images/gallery-example-3.jpg rename to images/descarte/gallery-example-3.jpg diff --git a/images/gallery-example-4-thumb.jpg b/images/descarte/gallery-example-4-thumb.jpg similarity index 100% rename from images/gallery-example-4-thumb.jpg rename to images/descarte/gallery-example-4-thumb.jpg diff --git a/images/gallery-example-4.jpg b/images/descarte/gallery-example-4.jpg similarity index 100% rename from images/gallery-example-4.jpg rename to images/descarte/gallery-example-4.jpg diff --git a/images/gallery-example-5-thumb.jpg b/images/descarte/gallery-example-5-thumb.jpg similarity index 100% rename from images/gallery-example-5-thumb.jpg rename to images/descarte/gallery-example-5-thumb.jpg diff --git a/images/gallery-example-5.jpg b/images/descarte/gallery-example-5.jpg similarity index 100% rename from images/gallery-example-5.jpg rename to images/descarte/gallery-example-5.jpg diff --git a/images/gallery-example-6-thumb.jpg b/images/descarte/gallery-example-6-thumb.jpg similarity index 100% rename from images/gallery-example-6-thumb.jpg rename to images/descarte/gallery-example-6-thumb.jpg diff --git a/images/gallery-example-6.jpg b/images/descarte/gallery-example-6.jpg similarity index 100% rename from images/gallery-example-6.jpg rename to images/descarte/gallery-example-6.jpg diff --git a/images/gallery-example-7-thumb.jpg b/images/descarte/gallery-example-7-thumb.jpg similarity index 100% rename from images/gallery-example-7-thumb.jpg rename to images/descarte/gallery-example-7-thumb.jpg diff --git a/images/gallery-example-7.jpg b/images/descarte/gallery-example-7.jpg similarity index 100% rename from images/gallery-example-7.jpg rename to images/descarte/gallery-example-7.jpg diff --git a/images/gallery-example-8-thumb.jpg b/images/descarte/gallery-example-8-thumb.jpg similarity index 100% rename from images/gallery-example-8-thumb.jpg rename to images/descarte/gallery-example-8-thumb.jpg diff --git a/images/gallery-example-8.jpg b/images/descarte/gallery-example-8.jpg similarity index 100% rename from images/gallery-example-8.jpg rename to images/descarte/gallery-example-8.jpg diff --git a/images/header-bus-thumb.jpg b/images/descarte/header-bus-thumb.jpg similarity index 100% rename from images/header-bus-thumb.jpg rename to images/descarte/header-bus-thumb.jpg diff --git a/images/header-bus.jpg b/images/descarte/header-bus.jpg similarity index 100% rename from images/header-bus.jpg rename to images/descarte/header-bus.jpg diff --git a/images/header_drop.jpg b/images/descarte/header_drop.jpg similarity index 100% rename from images/header_drop.jpg rename to images/descarte/header_drop.jpg diff --git a/images/header_homepage_13.jpg b/images/descarte/header_homepage_13.jpg similarity index 100% rename from images/header_homepage_13.jpg rename to images/descarte/header_homepage_13.jpg diff --git a/images/header_roadmap_2.jpg b/images/descarte/header_roadmap_2.jpg similarity index 100% rename from images/header_roadmap_2.jpg rename to images/descarte/header_roadmap_2.jpg diff --git a/images/header_roadmap_3.jpg b/images/descarte/header_roadmap_3.jpg similarity index 100% rename from images/header_roadmap_3.jpg rename to images/descarte/header_roadmap_3.jpg diff --git a/images/header_typewriter.jpg b/images/descarte/header_typewriter.jpg similarity index 100% rename from images/header_typewriter.jpg rename to images/descarte/header_typewriter.jpg diff --git a/images/header_unsplash_1.jpg b/images/descarte/header_unsplash_1.jpg similarity index 100% rename from images/header_unsplash_1.jpg rename to images/descarte/header_unsplash_1.jpg diff --git a/images/header_unsplash_12.jpg b/images/descarte/header_unsplash_12.jpg similarity index 100% rename from images/header_unsplash_12.jpg rename to images/descarte/header_unsplash_12.jpg diff --git a/images/header_unsplash_2-970x.jpg b/images/descarte/header_unsplash_2-970x.jpg similarity index 100% rename from images/header_unsplash_2-970x.jpg rename to images/descarte/header_unsplash_2-970x.jpg diff --git a/images/header_unsplash_2.jpg b/images/descarte/header_unsplash_2.jpg similarity index 100% rename from images/header_unsplash_2.jpg rename to images/descarte/header_unsplash_2.jpg diff --git a/images/header_unsplash_4.jpg b/images/descarte/header_unsplash_4.jpg similarity index 100% rename from images/header_unsplash_4.jpg rename to images/descarte/header_unsplash_4.jpg diff --git a/images/header_unsplash_5.jpg b/images/descarte/header_unsplash_5.jpg similarity index 100% rename from images/header_unsplash_5.jpg rename to images/descarte/header_unsplash_5.jpg diff --git a/images/header_unsplash_6.jpg b/images/descarte/header_unsplash_6.jpg similarity index 100% rename from images/header_unsplash_6.jpg rename to images/descarte/header_unsplash_6.jpg diff --git a/images/header_unsplash_7.jpg b/images/descarte/header_unsplash_7.jpg similarity index 100% rename from images/header_unsplash_7.jpg rename to images/descarte/header_unsplash_7.jpg diff --git a/images/header_unsplash_8.jpg b/images/descarte/header_unsplash_8.jpg similarity index 100% rename from images/header_unsplash_8.jpg rename to images/descarte/header_unsplash_8.jpg diff --git a/images/header_unsplash_9.jpg b/images/descarte/header_unsplash_9.jpg similarity index 100% rename from images/header_unsplash_9.jpg rename to images/descarte/header_unsplash_9.jpg diff --git a/images/header_unsplash_leaf.jpg b/images/descarte/header_unsplash_leaf.jpg similarity index 100% rename from images/header_unsplash_leaf.jpg rename to images/descarte/header_unsplash_leaf.jpg diff --git a/images/homepage_typography-thumb.jpg b/images/descarte/homepage_typography-thumb.jpg similarity index 100% rename from images/homepage_typography-thumb.jpg rename to images/descarte/homepage_typography-thumb.jpg diff --git a/images/homepage_typography.jpg b/images/descarte/homepage_typography.jpg similarity index 100% rename from images/homepage_typography.jpg rename to images/descarte/homepage_typography.jpg diff --git a/images/descarte/logo-sas.png b/images/descarte/logo-sas.png new file mode 100644 index 00000000000..d9834cbe603 Binary files /dev/null and b/images/descarte/logo-sas.png differ diff --git a/images/mediaplayer_js-home.jpg b/images/descarte/mediaplayer_js-home.jpg similarity index 100% rename from images/mediaplayer_js-home.jpg rename to images/descarte/mediaplayer_js-home.jpg diff --git a/images/mediaplayer_js-thumb.jpg b/images/descarte/mediaplayer_js-thumb.jpg similarity index 100% rename from images/mediaplayer_js-thumb.jpg rename to images/descarte/mediaplayer_js-thumb.jpg diff --git a/images/mediaplayer_js-title.jpg b/images/descarte/mediaplayer_js-title.jpg similarity index 100% rename from images/mediaplayer_js-title.jpg rename to images/descarte/mediaplayer_js-title.jpg diff --git a/images/pattern_concrete.jpg b/images/descarte/pattern_concrete.jpg similarity index 100% rename from images/pattern_concrete.jpg rename to images/descarte/pattern_concrete.jpg diff --git a/images/presentation-feeling-responsive.jpg b/images/descarte/presentation-feeling-responsive.jpg similarity index 100% rename from images/presentation-feeling-responsive.jpg rename to images/descarte/presentation-feeling-responsive.jpg diff --git a/images/promo-video-start.png b/images/descarte/promo-video-start.png similarity index 100% rename from images/promo-video-start.png rename to images/descarte/promo-video-start.png diff --git a/images/start-video-feeling-responsive-302x182.jpg b/images/descarte/start-video-feeling-responsive-302x182.jpg similarity index 100% rename from images/start-video-feeling-responsive-302x182.jpg rename to images/descarte/start-video-feeling-responsive-302x182.jpg diff --git a/images/typewriter-thumb.jpg b/images/descarte/typewriter-thumb.jpg similarity index 100% rename from images/typewriter-thumb.jpg rename to images/descarte/typewriter-thumb.jpg diff --git a/images/unsplash_9.jpg b/images/descarte/unsplash_9.jpg similarity index 100% rename from images/unsplash_9.jpg rename to images/descarte/unsplash_9.jpg diff --git a/images/unsplash_brooklyn-bridge-thumb.jpg b/images/descarte/unsplash_brooklyn-bridge-thumb.jpg similarity index 100% rename from images/unsplash_brooklyn-bridge-thumb.jpg rename to images/descarte/unsplash_brooklyn-bridge-thumb.jpg diff --git a/images/unsplash_brooklyn-bridge_header.jpg b/images/descarte/unsplash_brooklyn-bridge_header.jpg similarity index 100% rename from images/unsplash_brooklyn-bridge_header.jpg rename to images/descarte/unsplash_brooklyn-bridge_header.jpg diff --git a/images/unsplash_eagle.jpg b/images/descarte/unsplash_eagle.jpg similarity index 100% rename from images/unsplash_eagle.jpg rename to images/descarte/unsplash_eagle.jpg diff --git a/images/video-feeling-responsive-1280x720.jpg b/images/descarte/video-feeling-responsive-1280x720.jpg similarity index 100% rename from images/video-feeling-responsive-1280x720.jpg rename to images/descarte/video-feeling-responsive-1280x720.jpg diff --git a/images/video-feeling-responsive-tutorial-frontpage.jpg b/images/descarte/video-feeling-responsive-tutorial-frontpage.jpg similarity index 100% rename from images/video-feeling-responsive-tutorial-frontpage.jpg rename to images/descarte/video-feeling-responsive-tutorial-frontpage.jpg diff --git a/images/webdesign_screenshot_andersneu.jpg b/images/descarte/webdesign_screenshot_andersneu.jpg similarity index 100% rename from images/webdesign_screenshot_andersneu.jpg rename to images/descarte/webdesign_screenshot_andersneu.jpg diff --git a/images/webdesign_screenshot_jcorneille.jpg b/images/descarte/webdesign_screenshot_jcorneille.jpg similarity index 100% rename from images/webdesign_screenshot_jcorneille.jpg rename to images/descarte/webdesign_screenshot_jcorneille.jpg diff --git a/images/webdesign_screenshot_moritz_sauer.jpg b/images/descarte/webdesign_screenshot_moritz_sauer.jpg similarity index 100% rename from images/webdesign_screenshot_moritz_sauer.jpg rename to images/descarte/webdesign_screenshot_moritz_sauer.jpg diff --git a/images/webdesign_screenshot_mosonic.jpg b/images/descarte/webdesign_screenshot_mosonic.jpg similarity index 100% rename from images/webdesign_screenshot_mosonic.jpg rename to images/descarte/webdesign_screenshot_mosonic.jpg diff --git a/images/webdesign_screenshot_phlow.jpg b/images/descarte/webdesign_screenshot_phlow.jpg similarity index 100% rename from images/webdesign_screenshot_phlow.jpg rename to images/descarte/webdesign_screenshot_phlow.jpg diff --git a/images/widget-1-302x182.jpg b/images/descarte/widget-1-302x182.jpg similarity index 100% rename from images/widget-1-302x182.jpg rename to images/descarte/widget-1-302x182.jpg diff --git a/images/widget-github-303x182.jpg b/images/descarte/widget-github-303x182.jpg similarity index 100% rename from images/widget-github-303x182.jpg rename to images/descarte/widget-github-303x182.jpg diff --git a/images/logo-sas-lg-blue.png b/images/logo-sas-lg-blue.png new file mode 100644 index 00000000000..02f491546b4 Binary files /dev/null and b/images/logo-sas-lg-blue.png differ diff --git a/images/logo-sas.png b/images/logo-sas.png new file mode 100644 index 00000000000..490f760f88f Binary files /dev/null and b/images/logo-sas.png differ diff --git a/pages/contact.md b/pages/contact.md index 573da45194c..ae040ee07ca 100644 --- a/pages/contact.md +++ b/pages/contact.md @@ -1,9 +1,31 @@ --- -layout : page -title : "Contact" -meta_title : "Contact and use our contact form" -subheadline : "Contact Form" -teaser : "Get in touch with me? Use the contact form." -permalink : "/contact/" +layout: page +title: "Contato" +meta_title: "Contato - III SAS" +permalink: /contact/ --- -If you need a fabulous contact form for your website, I suggest you use the free version of [Wufoo](http://www.wufoo.com/) \ No newline at end of file + +O **III Simpósio de Automação e Sistemas (III SAS)** é realizado no âmbito da Universidade Federal do Rio Grande do Norte (UFRN). + +* **Instituição:** Universidade Federal do Rio Grande do Norte (UFRN) +* **Centro e Departamento:** Centro de Tecnologia (CTEC) - Departamento de Engenharia de Computação e Automação (DCA) +* **Laboratório:** Laboratório de Automação (LAUT) +* **Local do Evento:** Auditório do LAUT ou CTEC - Natal/RN + +--- + +### Comissão Organizadora + +O evento é organizado por docentes e colaboradores do LAUT-DCA: +* Prof. Dr. André Laurindo Maitelli +* Prof. Dr. Agostinho Brito +* Prof. Dr. Fábio Meneghetti +* Ana Sophia Soares +* Laíze Oliveira +* Marina Lucena +* Aurea Cabral +* Guilherme +* Dominic +* Fernando Couto + +Para dúvidas sobre submissões, inscrições ou programação, entre em contato através dos canais oficiais da instituição organizadora. diff --git a/pages/inscricoes.md b/pages/inscricoes.md new file mode 100644 index 00000000000..563f43ae0b5 --- /dev/null +++ b/pages/inscricoes.md @@ -0,0 +1,23 @@ +--- +layout: page +title: "Inscrições" +permalink: /inscricoes/ +--- + +As inscrições para o **III Simpósio de Automação e Sistemas (III SAS)** já possuem cronograma definido. O evento contará com **60 vagas** disponíveis. + +### Cronograma + +* **Período de Inscrições:** de 01/10/2026 a 23/10/2026. + +### Submissão de Artigos e Palestras + +Se você deseja submeter trabalhos para o simpósio, fique atento às datas: + +* **Submissão de artigos e propostas de palestras:** de 31/08/2026 a 30/09/2026. +* **Avaliação:** 01/10/2026 a 16/10/2026. +* **Envio da versão final:** até 23/10/2026. + +--- + +> **Atenção:** Mais informações sobre o formulário de inscrição e eventuais taxas serão divulgadas em breve nesta página. Fique atento às atualizações. \ No newline at end of file diff --git a/pages/pages-root-folder/index.md b/pages/pages-root-folder/index.md index 6b095358eb1..ed6632ebf19 100644 --- a/pages/pages-root-folder/index.md +++ b/pages/pages-root-folder/index.md @@ -1,52 +1,46 @@ --- -# -# Use the widgets beneath and the content will be -# inserted automagically in the webpage. To make -# this work, you have to use › layout: frontpage -# layout: frontpage header: - image_fullwidth: header_unsplash_12.jpg + image_fullwidth: logo-sas.png widget1: - title: "Blog & Portfolio" - url: 'http://phlow.github.io/feeling-responsive/blog/' - image: widget-1-302x182.jpg - text: 'Every good portfolio website has a blog with fresh news, thoughts and develop­ments of your activities. <em>Feeling Responsive</em> offers you a fully functional blog with an archive page to give readers a quick overview of all your posts.' + title: "Sobre o III SAS" + url: "/sobre/" + image: sas-sobre.jpg + text: "O III Simpósio de Automação e Sistemas reúne estudantes, pesquisadores e profissionais para compartilhar conhecimentos, celebrar os 30 anos da Engenharia da Computação e discutir os caminhos da automação." widget2: - title: "Why use this theme?" - url: 'http://phlow.github.io/feeling-responsive/info/' - text: '<em>Feeling Responsive</em> is heavily customizable.<br/>1. Language-Support :)<br/>2. Optimized for speed and it's responsive.<br/>3. Built on <a href="http://foundation.zurb.com/">Foundation Framework</a>.<br/>4. Seven different Headers.<br/>5. Customizable navigation, footer,...' - video: '<a href="#" data-reveal-id="videoModal"><img src="http://phlow.github.io/feeling-responsive/images/start-video-feeling-responsive-302x182.jpg" width="302" height="182" alt=""/></a>' + title: "Programação" + url: "/programacao/" + image: sas-programacao.jpg + text: "Confira a programação completa dos dias 12 e 13 de novembro de 2026, com palestras, plenárias, mesas e apresentações de artigos." widget3: - title: "Download Theme" - url: 'https://github.com/Phlow/feeling-responsive' - image: widget-github-303x182.jpg - text: '<em>Feeling Responsive</em> is free and licensed under a MIT License. Make it your own and start building. The code is well-documented and explains you how it works.' -# -# Use the call for action to show a button on the frontpage -# -# To make internal links, just use a permalink like this -# url: /getting-started/ -# -# To style the button in different colors, use no value -# to use the main color or success, alert or secondary. -# To change colors see sass/_01_settings_colors.scss -# -callforaction: - url: https://tinyletter.com/feeling-responsive - text: Inform me about new updates and features › - style: alert + title: "Inscrições" + url: "/inscricoes/" + image: sas-inscricoes.jpg + text: "Acompanhe as informações sobre prazos, modalidades e participe do evento. Inscrições abertas de 01/10 a 23/10/2026." permalink: /index.html -# -# This is a nasty hack to make the navigation highlight -# this page as active in the topbar navigation -# homepage: true --- +<div class="row"> + <div class="small-12 columns"> -<div id="videoModal" class="reveal-modal large" data-reveal=""> - <div class="flex-video widescreen vimeo" style="display: block;"> - <iframe width="1280" height="720" src="https://www.youtube.com/embed/3b5zCFSmVvU" frameborder="0" allowfullscreen></iframe> + <h2>III Simpósio de Automação e Sistemas</h2> + + <p> + O III SAS — Seminário de Automação e Sistemas reúne estudantes, pesquisadores, profissionais e representantes do setor para compartilhar conhecimentos, apresentar pesquisas e discutir tendências e desafios relacionados à automação e aos sistemas. + </p> + + <p> + Nesta edição, o evento conta com uma programação especial em comemoração aos <strong>30 anos do curso de Engenharia da Computação</strong>, celebrando três décadas de formação, pesquisa, tecnologia e inovação. + </p> + + <hr> + + <h3>Informações Gerais</h3> + <ul> + <li><strong>Datas:</strong> 12 e 13 de novembro de 2026</li> + <li><strong>Local:</strong> Auditório do LAUT ou CTEC (a definir) • Natal/RN</li> + <li><strong>Submissão de Artigos:</strong> 31/08 a 30/09/2026</li> + <li><strong>Inscrições:</strong> 01/10 a 23/10/2026</li> + </ul> </div> - <a class="close-reveal-modal">×</a> -</div> +</div> \ No newline at end of file diff --git a/pages/programacao.md b/pages/programacao.md new file mode 100644 index 00000000000..76cef9c5b76 --- /dev/null +++ b/pages/programacao.md @@ -0,0 +1,37 @@ +--- +layout: page +title: "Programação" +permalink: /programacao/ +--- + +Confira a programação do **III Simpósio de Automação e Sistemas (III SAS)**. + +## Dia 12/11/2026 (Quinta-Feira) + +| Horário | Atividade | +| :--- | :--- | +| 08h00 - 09h00 | Credenciamento | +| 09h00 - 09h30 | Abertura (Prof. Dr Anderson Cavalcanti, Prof. Dra. Carla Maitelli) | +| 09h30 - 10h20 | Palestra – 30 anos do curso de Engenharia de Computação (Prof. Dr. Samuel Xavier) | +| 10h20 - 10h50 | Coffee-Break | +| 10h50 - 11h40 | Palestra 1 (Esig Group) | +| 11h40 - 12h30 | Palestra 2 (Prof. Dr. Adelardo Medeiros, iDUS - Inteligência Industrial) | +| 12h30 - 14h00 | Almoço | +| 14h00 - 15h00 | Plenária 1 – Tema Inteligência Artificial (Prof. Dr. Ivanovitch Silva) | +| 15h00 - 15h30 | Coffee-Break | +| 15h30 - 17h30 | Apresentação de artigos (6 artigos) | + +## Dia 13/11/2026 (Sexta-Feira) + +| Horário | Atividade | +| :--- | :--- | +| 09h00 - 10h00 | Plenária 2 – Automação em Petróleo | +| 10h00 - 10h30 | Coffee-Break | +| 10h30 - 12h30 | Apresentação de artigos (6 artigos) | +| 12h30 - 14h00 | Almoço | +| 14h00 - 15h00 | Plenária 3 – tema Data Science (Prof. Dr. Carlos Viegas, Prof. Dr. Luiz Affonso) | +| 15h00 - 15h30 | Coffee-Break | +| 15h30 - 17h30 | Apresentação de artigos (6 artigos) | +| 17h30 - 18h00 | Encerramento | + +> **Observação:** A programação poderá sofrer alterações. \ No newline at end of file diff --git a/pages/sobre.md b/pages/sobre.md new file mode 100644 index 00000000000..2cc8358c378 --- /dev/null +++ b/pages/sobre.md @@ -0,0 +1,46 @@ +--- +layout: page +title: "Sobre o III SAS" +permalink: /sobre/ +--- + +O **III Simpósio de Automação e Sistemas (III SAS)** reúne estudantes, pesquisadores, profissionais e representantes do setor para compartilhar conhecimentos, apresentar pesquisas e discutir tendências e desafios relacionados à automação e aos sistemas. + +O evento promove a integração entre universidade, pesquisa, tecnologia e indústria, criando um espaço para troca de experiências, divulgação científica e discussão de soluções inovadoras. + +## Comemoração Especial: 30 Anos de Engenharia da Computação + +Nesta edição, o III SAS celebra os **30 anos do curso de Engenharia da Computação**. É um momento especial para reconhecer a trajetória do curso, sua contribuição para a formação de profissionais e pesquisadores, e para projetar os próximos anos da tecnologia e inovação. Durante o evento, teremos uma programação dedicada a essa história de três décadas. + +## O que você vai encontrar? + +- **Palestras**: Discussões com especialistas e profissionais convidados. +- **Plenárias**: Debates sobre temas atuais e estratégicos da tecnologia. +- **Apresentações de Artigos**: Espaço para divulgação e discussão de trabalhos científicos. +- **Conexão com a Indústria**: Integração entre conhecimento acadêmico, mercado e inovação. + +## Temas em Destaque + +O simpósio abrange diversas áreas fundamentais para a automação e sistemas: + +- Inteligência Artificial +- Automação +- Sistemas Inteligentes +- Data Science +- Automação em Petróleo +- Controle e Sistemas +- Tecnologias para a Indústria + +## Realização + +O III SAS é realizado pela **Universidade Federal do Rio Grande do Norte (UFRN)**, através do **Departamento de Engenharia de Computação e Automação (DCA)** e do **Laboratório de Automação (LAUT)**. + +--- + +### Participe do III SAS + +Acompanhe as informações sobre a **programação**, as **inscrições** e as demais atividades do evento. + +[Confira a programação](/programacao/){: .button} + +[Informações sobre inscrições](/inscricoes/){: .button} \ No newline at end of file